diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-09 01:37:42 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-09 01:37:42 +0200 |
commit | dfee47aa92d9cda6c2fe4f9873bfe1ae808bae57 (patch) | |
tree | 73cfb27167349081bf270020e8c270c926c331d7 /lib/nexthop.h | |
parent | bgpd: Allow bgp to work standalone (diff) | |
parent | quagga-reload.py fails for "net add debug ospf6 lsa as-ext" (diff) | |
download | frr-dfee47aa92d9cda6c2fe4f9873bfe1ae808bae57.tar.xz frr-dfee47aa92d9cda6c2fe4f9873bfe1ae808bae57.zip |
Merge remote-tracking branch 'origin/cmaster' into cmaster-next
Diffstat (limited to 'lib/nexthop.h')
-rw-r--r-- | lib/nexthop.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/nexthop.h b/lib/nexthop.h index 4445c4ad2..39e8b5425 100644 --- a/lib/nexthop.h +++ b/lib/nexthop.h @@ -26,6 +26,9 @@ #include "prefix.h" +/* Maximum next hop string length - gateway + ifindex */ +#define NEXTHOP_STRLEN (INET6_ADDRSTRLEN + 30) + union g_addr { struct in_addr ipv4; struct in6_addr ipv6; @@ -97,4 +100,5 @@ void nexthops_free (struct nexthop *nexthop); extern const char *nexthop_type_to_str (enum nexthop_types_t nh_type); extern int nexthop_same_no_recurse (struct nexthop *next1, struct nexthop *next2); +extern const char * nexthop2str (struct nexthop *nexthop, char *str, int size); #endif /*_LIB_NEXTHOP_H */ |