Added an expert info for "IP port reused".

svn path=/trunk/; revision=28472
This commit is contained in:
Stig Bjørlykke 2009-05-25 21:10:22 +00:00
parent dbc67fc367
commit b9960e08d8
1 changed files with 4 additions and 1 deletions

View File

@ -38,6 +38,7 @@
#include <epan/conversation.h>
#include <epan/emem.h>
#include <epan/tap.h>
#include <epan/expert.h>
#include "packet-afp.h"
@ -4161,7 +4162,7 @@ dissect_afp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
if (!aspinfo->reply) {
proto_tree_add_uint(afp_tree, hf_afp_command, tvb,offset, 1, afp_command);
ti = proto_tree_add_uint(afp_tree, hf_afp_command, tvb,offset, 1, afp_command);
if (afp_command != tvb_get_guint8(tvb, offset))
{
/* we have the same conversation for different connections eg:
@ -4173,6 +4174,8 @@ dissect_afp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (col_info) {
col_set_str(pinfo->cinfo, COL_INFO,
"[Error!IP port reused, you need to split the capture file]");
expert_add_info_format(pinfo, ti, PI_SEQUENCE, PI_WARN,
"IP port reused, you need to split the capture file");
return;
}
}