From Miroslav Miklus via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9504 Enhance BGP dissector : bgp-ls dissector (draft-ietf-idr-ls-distribution-04)

BGPTYPE_LINK_STATE_ATTR is temporarily set to 99, would need change when IANA allocate a Path Attribute value for BGP-LS

From me :
* Fix indent
* fix arg encoding (via encoding-args tools)

svn path=/trunk/; revision=54728
This commit is contained in:
Alexis La Goutte 2014-01-13 22:24:32 +00:00
parent c9778167ea
commit 10345a6b2e
3 changed files with 1667 additions and 1 deletions

View File

@ -59,6 +59,7 @@ const value_string afn_vals[] = {
{ AFNUM_EIGRP_IPV4, "EIGRP IPv4 Service Family" },
{ AFNUM_EIGRP_IPV6, "EIGRP IPv6 Service Family" },
{ AFNUM_LCAF, "LISP Canonical Address Format (LCAF)" },
{ AFNUM_LINK_STATE, "Link State and TE information" },
{ 65535, "Reserved" },
{ 0, NULL },
};

View File

@ -66,6 +66,8 @@ extern "C" {
#define AFNUM_EIGRP_IPV4 16385 /* EIGRP IPv4 Service Family */
#define AFNUM_EIGRP_IPV6 16386 /* EIGRP IPv6 Service Family */
#define AFNUM_LCAF 16387 /* LISP Canonical Address Format */
#define AFNUM_LINK_STATE 16388 /* draft-ietf-idr-ls-distribution */
extern const value_string afn_vals[];
#ifdef __cplusplus

File diff suppressed because it is too large Load Diff