diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-09-29 01:19:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-09-29 01:19:01 +0000 |
commit | 0102e0c783324875d19d6290c63121edc827f0a5 (patch) | |
tree | 7b803b1e3738baaf01cab288a68e3f087627367d /packet-nbns.c | |
parent | 096770328914d454c8a7267c4ec14b23c9a73977 (diff) | |
download | wireshark-0102e0c783324875d19d6290c63121edc827f0a5.tar.gz wireshark-0102e0c783324875d19d6290c63121edc827f0a5.tar.bz2 wireshark-0102e0c783324875d19d6290c63121edc827f0a5.zip |
Start the process of tvbuffifying the SMB dissector - give it a
tvbuffified heuristic-dissector interface, but have it immediately turn
its arguments into an old-style buffer pointer and offset.
Register the SMB dissector as a heuristic NetBIOS dissector, and have
"dissect_netbios_payload()" just try the heuristics, as it no longer has
to call the SMB dissector explicitly.
svn path=/trunk/; revision=3973
Diffstat (limited to 'packet-nbns.c')
-rw-r--r-- | packet-nbns.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packet-nbns.c b/packet-nbns.c index c0694fb1d4..6df0fc8c38 100644 --- a/packet-nbns.c +++ b/packet-nbns.c @@ -4,7 +4,7 @@ * Gilbert Ramirez <gram@xiexie.org> * Much stuff added by Guy Harris <guy@alum.mit.edu> * - * $Id: packet-nbns.c,v 1.59 2001/09/29 00:57:36 guy Exp $ + * $Id: packet-nbns.c,v 1.60 2001/09/29 01:19:00 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -40,7 +40,6 @@ #include "packet.h" #include "packet-dns.h" #include "packet-netbios.h" -#include "packet-smb.h" #include "prefs.h" static int proto_nbns = -1; |