Do not send empty packets in rip.

This commit is contained in:
Pavel Machek 2000-01-26 14:12:18 +00:00
parent 8660913ba8
commit bd215f8bab

View file

@ -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" );