diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-17 15:53:51 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-17 15:53:51 +0200 |
commit | 907b430346b16f670a497e357ba48b01a3240144 (patch) | |
tree | e10b8190bc22e4e04bc75d3f43fe894684415a2f /eigrpd/eigrp_query.c | |
parent | eigrpd: Remove extra newline in debug (diff) | |
download | frr-907b430346b16f670a497e357ba48b01a3240144.tar.xz frr-907b430346b16f670a497e357ba48b01a3240144.zip |
eigrpd: Store nbr in packet data
Store the neighbor information( if available ) in the packet
data that we are sending. This will allow in a future commit
the ability to fixup the outgoing ack we are sending.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_query.c')
-rw-r--r-- | eigrpd/eigrp_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_query.c b/eigrpd/eigrp_query.c index 653eae258..92bc792c6 100644 --- a/eigrpd/eigrp_query.c +++ b/eigrpd/eigrp_query.c @@ -159,7 +159,7 @@ void eigrp_send_query(struct eigrp_interface *ei) char has_tlv; bool ep_saved = false; - ep = eigrp_packet_new(ei->ifp->mtu); + ep = eigrp_packet_new(ei->ifp->mtu, NULL); /* Prepare EIGRP INIT UPDATE header */ eigrp_packet_header_init(EIGRP_OPC_QUERY, ei, ep->s, 0, |