diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-05-16 18:52:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-05-16 18:52:37 +0000 |
commit | a304fe6092d48acbfc49d661438157cb61780240 (patch) | |
tree | 6d04953e7b96b152cab60f5c9dc2a0f7f2dc2756 /packet-bgp.h | |
parent | 4004d96518225c0ddbbedf4e8500a6d47b06be2b (diff) | |
download | wireshark-a304fe6092d48acbfc49d661438157cb61780240.tar.gz wireshark-a304fe6092d48acbfc49d661438157cb61780240.tar.bz2 wireshark-a304fe6092d48acbfc49d661438157cb61780240.zip |
Support for Cisco-proprietary capabilities in BGP, from
<bgp4news@yahoo.com>.
svn path=/trunk/; revision=3416
Diffstat (limited to 'packet-bgp.h')
-rw-r--r-- | packet-bgp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-bgp.h b/packet-bgp.h index 1131306a61..86cc7fa3d7 100644 --- a/packet-bgp.h +++ b/packet-bgp.h @@ -1,7 +1,7 @@ /* packet-bgp.c * Definitions for BGP packet disassembly structures and routine * - * $Id: packet-bgp.h,v 1.11 2001/04/17 21:25:13 guy Exp $ + * $Id: packet-bgp.h,v 1.12 2001/05/16 18:52:36 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -41,6 +41,7 @@ #define BGP_NOTIFICATION 3 #define BGP_KEEPALIVE 4 #define BGP_ROUTE_REFRESH 5 +#define BGP_ROUTE_REFRESH_CISCO 0x80 /* BGP header */ struct bgp { @@ -108,6 +109,8 @@ struct bgp_attr { #define BGP_CAPABILITY_RESERVED 0 /* RFC2434 */ #define BGP_CAPABILITY_MULTIPROTOCOL 1 /* RFC2858 */ #define BGP_CAPABILITY_ROUTE_REFRESH 2 /* RFC2918 */ +#define BGP_CAPABILITY_ROUTE_REFRESH_CISCO 0x80 /* Cisco */ + /* well-known communities, from RFC1997 */ #define BGP_COMM_NO_EXPORT 0xFFFFFF01 |