diff options
author | Gerald Combs <gerald@wireshark.org> | 2003-04-25 14:44:43 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2003-04-25 14:44:43 +0000 |
commit | 51226f411cc12e2ee16782184e2394f3dcfffea2 (patch) | |
tree | eb8a43c000211fe81e3c5edd3c8cc41d760e2fae | |
parent | cbb30c24ed1029dbcdb5e38a78dcc1c988bc3a9c (diff) | |
download | wireshark-51226f411cc12e2ee16782184e2394f3dcfffea2.tar.gz wireshark-51226f411cc12e2ee16782184e2394f3dcfffea2.tar.bz2 wireshark-51226f411cc12e2ee16782184e2394f3dcfffea2.zip |
Initialize hf_bgp_cluster_list.
svn path=/trunk/; revision=7557
-rw-r--r-- | packet-bgp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-bgp.c b/packet-bgp.c index 1d6ae5eefb..76dbc1a103 100644 --- a/packet-bgp.c +++ b/packet-bgp.c @@ -2,7 +2,7 @@ * Routines for BGP packet dissection. * Copyright 1999, Jun-ichiro itojun Hagino <itojun@itojun.org> * - * $Id: packet-bgp.c,v 1.76 2003/04/24 09:00:27 guy Exp $ + * $Id: packet-bgp.c,v 1.77 2003/04/25 14:44:43 gerald Exp $ * * Supports: * RFC1771 A Border Gateway Protocol 4 (BGP-4) @@ -2745,6 +2745,9 @@ proto_register_bgp(void) { &hf_bgp_withdrawn_prefix, { "Withdrawn prefix", "bgp.withdrawn_prefix", FT_IPv4, BASE_NONE, NULL, 0x0, "", HFILL}}, + { &hf_bgp_cluster_list, + { "Cluster List", "bgp.cluster_list", FT_BYTES, BASE_HEX, + NULL, 0x0, "", HFILL}}, }; static gint *ett[] = { |