From 92609553c7c6da3214482b1f39bef7cce41a6fdf Mon Sep 17 00:00:00 2001 From: Markus Amend Date: Fri, 12 Jan 2018 08:27:12 +0100 Subject: netsniff-ng: add DCCP support Adds a first rudimentary support for the DCCP protocol. Signed-off-by: Markus Amend [tk: minor formatting tweaks] Signed-off-by: Tobias Klauser --- dissector_eth.c | 1 + 1 file changed, 1 insertion(+) (limited to 'dissector_eth.c') diff --git a/dissector_eth.c b/dissector_eth.c index 7041aac..3a93f40 100644 --- a/dissector_eth.c +++ b/dissector_eth.c @@ -57,6 +57,7 @@ static void dissector_init_layer_3(int type) INSERT_HASH_PROTOS(ipv6_routing_ops, eth_lay3); INSERT_HASH_PROTOS(tcp_ops, eth_lay3); INSERT_HASH_PROTOS(udp_ops, eth_lay3); + INSERT_HASH_PROTOS(dccp_ops, eth_lay3); for_each_hash_int(ð_lay3, dissector_set_print_type, type); } -- cgit v1.2.3-54-g00ecf