aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-13 20:53:44 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-13 20:53:44 +0000
commitf4d65e301eecd19ce5e058bf5ef82cfd0dd8930e (patch)
tree1b64616273e31cc76bb541c13a0aef7418bbc83b /packet-tcp.c
parentcd46db5e4b134930e5aa24f9cdec1e2515b409f3 (diff)
Change the gboolean controlling whether to use TCP Sequence Number Analysis and TCP Relative Sequence Numbers to default to ENABLED
instead of DISABLED. These features do not consume that much memory or CPU but will greatly enhance the feature set of ethereal. Make it enabled by default so also those that never venture into the preferences dialog will benefit from it. svn path=/trunk/; revision=8957
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index e38ddd72c8..2343a10d68 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.216 2003/11/11 19:24:09 guy Exp $
+ * $Id: packet-tcp.c,v 1.217 2003/11/13 20:53:44 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -169,8 +169,8 @@ process_tcp_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
* stuff to analyze TCP sequencenumbers for retransmissions, missing segments,
* RTT and reltive sequence numbers.
* **************************************************************************/
-static gboolean tcp_analyze_seq = FALSE;
-static gboolean tcp_relative_seq = FALSE;
+static gboolean tcp_analyze_seq = TRUE;
+static gboolean tcp_relative_seq = TRUE;
static GMemChunk *tcp_unacked_chunk = NULL;
static int tcp_unacked_count = 500; /* one for each packet until it is acked*/