aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-msproxy.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-02 09:33:49 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-02 09:33:49 +0000
commitd4812588a1610804df578f0314e65265e6febe7b (patch)
tree108f5b8d6aa7adf4f6608d44ea36fd195915f439 /epan/dissectors/packet-msproxy.c
parent4378dc9510d682b60952963100d787f43fe4d778 (diff)
make the tcp_acked struct a pointer from the tcpd struct since we might need it hanging around.
only call subdissectors for packets that are NOT keepalives nor zerowindowprobes. keepalives only contain garbage anyway and zerowindowproes just contain a single byte of incomplete data so whats the point trying to dissect it further. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17443 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-msproxy.c')
-rw-r--r--epan/dissectors/packet-msproxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-msproxy.c b/epan/dissectors/packet-msproxy.c
index 6522592ae9..bba64ba988 100644
--- a/epan/dissectors/packet-msproxy.c
+++ b/epan/dissectors/packet-msproxy.c
@@ -235,7 +235,7 @@ static void msproxy_sub_dissector( tvbuff_t *tvb, packet_info *pinfo,
if ( redirect_info->proto == PT_TCP)
decode_tcp_ports( tvb, 0, pinfo, tree, pinfo->srcport,
- pinfo->destport);
+ pinfo->destport, NULL);
else
decode_udp_ports( tvb, 0, pinfo, tree, pinfo->srcport,
pinfo->destport, -1);