diff options
author | Paul Jakma <paul.jakma@sun.com> | 2008-06-07 20:37:10 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@sun.com> | 2008-06-07 20:37:10 +0000 |
commit | 032928091c558d3b0940be079049009f47652711 (patch) | |
tree | 81bd1c2ddfbf41f380bfd38370e42d3c646f5e08 /bgpd/bgp_attr.h | |
parent | 343f720b345dd377bdf4f53e3b02e0c2898f3f0b (diff) |
[bgpd] minor changes to bgp_mp_reach_parse
2008-06-07 Paul Jakma <paul@jakma.org>
* bgp_attr.{c,h}: (bgp_mp_{un,}reach_parse) export, for unit tests.
* bgp_attr.c: (bgp_mp_reach_parse) Add logging. Tighten length test
to bounds check against the attribute length rather than the
stream length..
Diffstat (limited to 'bgpd/bgp_attr.h')
-rw-r--r-- | bgpd/bgp_attr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index e152b9f4..9647ccf8 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -176,4 +176,9 @@ extern void cluster_unintern (struct cluster_list *); /* Transit attribute prototypes. */ void transit_unintern (struct transit *); +/* Exported for unit-test purposes only */ +extern int bgp_mp_reach_parse (struct peer *, bgp_size_t, struct attr *, + struct bgp_nlri *); +extern int bgp_mp_unreach_parse (struct peer *, bgp_size_t, struct bgp_nlri *); + #endif /* _QUAGGA_BGP_ATTR_H */ |