aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isis-hello.c
diff options
context:
space:
mode:
authorMarian Durkovic <md@bts.sk>2014-08-17 11:24:14 +0200
committerMichael Mann <mmann78@netscape.net>2014-08-18 00:51:45 +0000
commit4095bbf9e802fa64c3424659739f673e8a29a01b (patch)
tree6e117c6ee9a62f7414006ab729271be887588699 /epan/dissectors/packet-isis-hello.c
parentb8293f95ad18bc1cc00363627471c880d0f4e5a2 (diff)
Make TRILL NEIGHBOR TLV (145) known to ISIS dissector
Update RFC references Change-Id: I977190e6bfce2c27d33f940d058be3be6a5ef3c0 Reviewed-on: https://code.wireshark.org/review/3669 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-isis-hello.c')
-rw-r--r--epan/dissectors/packet-isis-hello.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/epan/dissectors/packet-isis-hello.c b/epan/dissectors/packet-isis-hello.c
index 15aa5e3ed6..6aa9e58884 100644
--- a/epan/dissectors/packet-isis-hello.c
+++ b/epan/dissectors/packet-isis-hello.c
@@ -126,6 +126,7 @@ static gint ett_isis_hello_clv_mt_port_cap_spb_mcid = -1;
static gint ett_isis_hello_clv_mt_port_cap_spb_aux_mcid = -1;
static gint ett_isis_hello_clv_mt_port_cap_spb_digest = -1;
static gint ett_isis_hello_clv_mt_port_cap_spb_bvid_tuples = -1;
+static gint ett_isis_hello_clv_trill_neighbor = -1;
static gint ett_isis_hello_clv_checksum = -1;
static expert_field ei_isis_hello_short_packet = EI_INIT;
@@ -518,6 +519,17 @@ dissect_hello_ip_authentication_clv(tvbuff_t *tvb, packet_info* pinfo _U_,
}
/*
+ * Name: dissect_hello_trill_neighbor_clv
+ */
+static void
+dissect_hello_trill_neighbor_clv(tvbuff_t *tvb, packet_info* pinfo,
+ proto_tree *tree, int offset, int id_length _U_, int length) {
+
+ /* TODO Implement dissector according to RFC7176 section 2.5 */
+
+}
+
+/*
* Name: dissect_hello_checksum_clv()
*
* Description:
@@ -773,6 +785,12 @@ static const isis_clv_handle_t clv_l1_hello_opts[] = {
dissect_hello_mt_clv
},
{
+ ISIS_CLV_TRILL_NEIGHBOR,
+ "TRILL Neighbor",
+ &ett_isis_hello_clv_trill_neighbor,
+ dissect_hello_trill_neighbor_clv
+ },
+ {
ISIS_CLV_CHECKSUM,
"Checksum",
&ett_isis_hello_clv_checksum,
@@ -1177,6 +1195,7 @@ proto_register_isis_hello(void)
&ett_isis_hello_clv_mt_port_cap_spb_aux_mcid,
&ett_isis_hello_clv_mt_port_cap_spb_digest,
&ett_isis_hello_clv_mt_port_cap_spb_bvid_tuples,
+ &ett_isis_hello_clv_trill_neighbor,
&ett_isis_hello_clv_checksum
};