aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2003-03-01 04:24:40 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2003-03-01 04:24:40 +0000
commit6470c4a96253842d0d56eb7511eccbc5ab7a3ab6 (patch)
treed5ce61c5e5f170e9903d2b417ba526232794aa26 /packet-tcp.c
parent65134122a3459171b6b0a30d7c92f344ca66ca5b (diff)
Start adding support for options as hidden fields in the dissect tree.
svn path=/trunk/; revision=7228
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index 6e8481c27b..855b42e8a1 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.174 2003/02/27 03:56:46 guy Exp $
+ * $Id: packet-tcp.c,v 1.175 2003/03/01 04:24:40 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -103,6 +103,17 @@ static int hf_tcp_segment_overlap_conflict = -1;
static int hf_tcp_segment_multiple_tails = -1;
static int hf_tcp_segment_too_long_fragment = -1;
static int hf_tcp_segment_error = -1;
+static int hf_tcp_option_mss = -1;
+static int hf_tcp_option_window = -1;
+static int hf_tcp_option_sack_perm = -1;
+static int hf_tcp_option_sack = -1;
+static int hf_tcp_option_echo = -1;
+static int hf_tcp_option_echo_reply = -1;
+static int hf_tcp_option_time_stamp = -1;
+static int hf_tcp_option_cc = -1;
+static int hf_tcp_option_ccnew = -1;
+static int hf_tcp_option_ccecho = -1;
+static int hf_tcp_option_md5 = -1;
static gint ett_tcp = -1;
static gint ett_tcp_flags = -1;