diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-20 02:56:50 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-20 02:56:50 +0200 |
commit | 01cbe587b04e0cf766099ee2dda8cae831aa25e2 (patch) | |
tree | 3e28c493ff110aa069de8501e666850f0c41374e /eigrpd/eigrp_packet.h | |
parent | Merge pull request #1011 from donaldsharp/tlv_crash (diff) | |
download | frr-01cbe587b04e0cf766099ee2dda8cae831aa25e2.tar.xz frr-01cbe587b04e0cf766099ee2dda8cae831aa25e2.zip |
eigrpd: Setup eigrp to send FRR version
Send to our peer the major/minor version of FRR that we are
working with. I decided to use FRR instead of the os major/minor
because the os itself doesn't tell you what version of EIGRP
you are actually using.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_packet.h')
-rw-r--r-- | eigrpd/eigrp_packet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eigrpd/eigrp_packet.h b/eigrpd/eigrp_packet.h index 03fe412f1..e72048ecc 100644 --- a/eigrpd/eigrp_packet.h +++ b/eigrpd/eigrp_packet.h @@ -71,6 +71,7 @@ extern int eigrp_unack_multicast_packet_retrans(struct thread *); * untill there is reason to have their own header, these externs are found in * eigrp_hello.c */ +extern void eigrp_sw_version_initialize(void); extern void eigrp_hello_send(struct eigrp_interface *, u_char, struct in_addr *); extern void eigrp_hello_send_ack(struct eigrp_neighbor *); |