mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 01:31:55 +00:00
Do not send empty packets in rip.
This commit is contained in:
parent
8660913ba8
commit
bd215f8bab
@ -162,10 +162,14 @@ rip_tx( sock *s )
|
||||
if (i == !!P_CF->authtype)
|
||||
continue;
|
||||
#endif
|
||||
if (ipa_nonzero(c->daddr))
|
||||
i = sk_send_to( s, packetlen, c->daddr, c->dport );
|
||||
else
|
||||
i = sk_send( s, packetlen );
|
||||
if (!i)
|
||||
DBG( "not sending NULL update\n" );
|
||||
else {
|
||||
if (ipa_nonzero(c->daddr))
|
||||
i = sk_send_to( s, packetlen, c->daddr, c->dport );
|
||||
else
|
||||
i = sk_send( s, packetlen );
|
||||
}
|
||||
|
||||
DBG( "it wants more\n" );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user