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)
|
if (i == !!P_CF->authtype)
|
||||||
continue;
|
continue;
|
||||||
#endif
|
#endif
|
||||||
if (ipa_nonzero(c->daddr))
|
if (!i)
|
||||||
i = sk_send_to( s, packetlen, c->daddr, c->dport );
|
DBG( "not sending NULL update\n" );
|
||||||
else
|
else {
|
||||||
i = sk_send( s, packetlen );
|
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" );
|
DBG( "it wants more\n" );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user