Preparation Host Flows: Dissector Packet ICMP and ICMPv6

see https://code.wireshark.org/review/#/c/9976/

Change-Id: Ic301db4deea1a02b9e08c123b3e21e70817a2c85
Reviewed-on: https://code.wireshark.org/review/10097
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Pascal Artho 2015-08-18 08:43:06 +02:00 committed by Anders Broman
parent 318c3a5452
commit 9e72779636
2 changed files with 2 additions and 0 deletions

View File

@ -1594,6 +1594,7 @@ dissect_icmp(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, void* data)
tap_queue_packet(icmp_tap, pinfo, trans);
}
col_append_fstr(pinfo->cinfo, COL_INFO, ", Type=%d, Code=%d", icmp_type, icmp_code);
return tvb_reported_length(tvb);
}

View File

@ -4117,6 +4117,7 @@ dissect_icmpv6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
if (trans)
tap_queue_packet(icmpv6_tap, pinfo, trans);
col_append_fstr(pinfo->cinfo, COL_INFO, ", Type=%d, Code=%d", icmp6_type, icmp6_code);
return offset;
}