diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-09-17 02:07:00 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-09-17 02:07:00 +0000 |
commit | 0e100855807c74434a74040cc6487ca89cc004ba (patch) | |
tree | 3ef57bc5e24ad0aaea7c4aeab782d7242b605afe /packet-rpc.c | |
parent | 16b4866dca4871c8359360b4689bd3df06e67b28 (diff) | |
download | wireshark-0e100855807c74434a74040cc6487ca89cc004ba.tar.gz wireshark-0e100855807c74434a74040cc6487ca89cc004ba.tar.bz2 wireshark-0e100855807c74434a74040cc6487ca89cc004ba.zip |
Add support for desegmentation of DNS messages.
Make the default for NBSS and ONC RPC-over-TCP desegmentation "on",
rather than "off"; the default for desegmentation in general is "off",
so this won't change the default behavior, but it lets you turn
desegmentation on by flipping only one switch (and turn it off for
particular protocols if you desire).
svn path=/trunk/; revision=3943
Diffstat (limited to 'packet-rpc.c')
-rw-r--r-- | packet-rpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rpc.c b/packet-rpc.c index dcd5412669..b5acb171f1 100644 --- a/packet-rpc.c +++ b/packet-rpc.c @@ -2,7 +2,7 @@ * Routines for rpc dissection * Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de> * - * $Id: packet-rpc.c,v 1.71 2001/09/13 07:53:51 guy Exp $ + * $Id: packet-rpc.c,v 1.72 2001/09/17 02:07:00 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -62,7 +62,7 @@ #define RPC_RM_FRAGLEN 0x7fffffffL /* desegmentation of RPC over TCP */ -static gboolean rpc_desegment = FALSE; +static gboolean rpc_desegment = TRUE; static struct true_false_string yesno = { "Yes", "No" }; |