summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_structs.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-08-17 15:53:51 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-08-17 15:53:51 +0200
commit907b430346b16f670a497e357ba48b01a3240144 (patch)
treee10b8190bc22e4e04bc75d3f43fe894684415a2f /eigrpd/eigrp_structs.h
parenteigrpd: Remove extra newline in debug (diff)
downloadfrr-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_structs.h')
-rw-r--r--eigrpd/eigrp_structs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/eigrpd/eigrp_structs.h b/eigrpd/eigrp_structs.h
index fd3e4b201..0c15436d4 100644
--- a/eigrpd/eigrp_structs.h
+++ b/eigrpd/eigrp_structs.h
@@ -311,6 +311,8 @@ struct eigrp_packet {
/* EIGRP packet length. */
u_int16_t length;
+
+ struct eigrp_neighbor *nbr;
};
struct eigrp_fifo {