From: ajs Date: Wed, 9 Feb 2005 15:35:50 +0000 (+0000) Subject: 2005-02-09 Andrew J. Schorr X-Git-Tag: frr-2.0-rc1~3197 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=083ee9d9cdbf72a452b9af96e62d0625ea712cd9;p=mirror%2Ffrr.git 2005-02-09 Andrew J. Schorr * ospf_packet.c: (ospf_write) If sendmsg fails, give more info in the error message. --- diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 0d7bd9c479..c530a98d57 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,8 @@ +2005-02-09 Andrew J. Schorr + + * ospf_packet.c: (ospf_write) If sendmsg fails, give more info in the + error message. + 2005-02-08 Andrew J. Schorr * ospf_interface.h: Reduce structure padding by putting new u_char diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 4700329e1d..44b130b76f 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -705,8 +705,10 @@ ospf_write (struct thread *thread) sockopt_iphdrincl_swab_systoh (&iph); if (ret < 0) - zlog_warn ("*** sendmsg in ospf_write to %s failed with %s", - inet_ntoa (iph.ip_dst), safe_strerror (errno)); + zlog_warn ("*** sendmsg in ospf_write failed to %s, " + "id %d, off %d, len %d: %s", + inet_ntoa (iph.ip_dst), iph.ip_id, iph.ip_off, iph.ip_len, + safe_strerror (errno)); /* Show debug sending packet. */ if (IS_DEBUG_OSPF_PACKET (type - 1, SEND))