aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-03-27 19:55:59 +0000
committerGuy Harris <guy@alum.mit.edu>2003-03-27 19:55:59 +0000
commit15fdb273f7996cd04053379c776d29f72fa4a885 (patch)
tree494f79315d33f6421834c4539166b6413c8f040d
parent30dbf20866c2e375366e5b6fcf81e08f30061f1b (diff)
downloadwireshark-15fdb273f7996cd04053379c776d29f72fa4a885.tar.gz
wireshark-15fdb273f7996cd04053379c776d29f72fa4a885.tar.bz2
wireshark-15fdb273f7996cd04053379c776d29f72fa4a885.zip
Use FT_FRAMENUM for the "Duplicate to the ACK in frame" and "This is an
ACK to the segment in frame" fields, so you can use the "Go To Corresponding Frame" menu item. svn path=/trunk/; revision=7379
-rw-r--r--packet-tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index 4ac3a82a06..f19796a608 100644
--- a/packet-tcp.c
+++ b/packet-tcp.c
@@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
- * $Id: packet-tcp.c,v 1.188 2003/03/27 09:40:27 sahlberg Exp $
+ * $Id: packet-tcp.c,v 1.189 2003/03/27 19:55:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2300,7 +2300,7 @@ proto_register_tcp(void)
"This is duplicate ACK number #", HFILL }},
{ &hf_tcp_analysis_duplicate_ack_frame,
- { "Duplicate to the ACK in frame", "tcp.analysis.duplicate_ack_frame", FT_UINT32, BASE_DEC, NULL, 0x0,
+ { "Duplicate to the ACK in frame", "tcp.analysis.duplicate_ack_frame", FT_FRAMENUM, BASE_NONE, NULL, 0x0,
"This is a duplicate to the ACK in frame #", HFILL }},
{ &hf_tcp_analysis_zero_window_violation,
@@ -2320,7 +2320,7 @@ proto_register_tcp(void)
"", HFILL}},
{ &hf_tcp_analysis_acks_frame,
- { "This is an ACK to the segment in frame", "tcp.analysis.acks_frame", FT_UINT32, BASE_DEC, NULL, 0x0,
+ { "This is an ACK to the segment in frame", "tcp.analysis.acks_frame", FT_FRAMENUM, BASE_NONE, NULL, 0x0,
"Which previous segment is this an ACK for", HFILL}},
{ &hf_tcp_analysis_ack_rtt,