summaryrefslogtreecommitdiff
path: root/packet-netbios.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-09-29 00:57:36 +0000
committerGuy Harris <guy@alum.mit.edu>2001-09-29 00:57:36 +0000
commit096770328914d454c8a7267c4ec14b23c9a73977 (patch)
tree99b20c72cdc5b36b948537e8f1baab383f302ebd /packet-netbios.h
parent168a986072dcef20db2ded2f26662eec3ff9108a (diff)
downloadwireshark-096770328914d454c8a7267c4ec14b23c9a73977.tar.gz
Have "dissect_netbios_payload()" take as an argument a tvbuff containing
only the NetBIOS payload, and have the NBSS dissector construct tvbuffs of that sort (i.e., stop at the end of the NBSS session message, not at the end of the data handed to the NBSS dissector). svn path=/trunk/; revision=3972
Diffstat (limited to 'packet-netbios.h')
-rw-r--r--packet-netbios.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-netbios.h b/packet-netbios.h
index a617f488ae..3b49807184 100644
--- a/packet-netbios.h
+++ b/packet-netbios.h
@@ -5,7 +5,7 @@
*
* derived from the packet-nbns.c
*
- * $Id: packet-netbios.h,v 1.10 2001/09/28 22:43:56 guy Exp $
+ * $Id: packet-netbios.h,v 1.11 2001/09/29 00:57:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -40,7 +40,7 @@ extern int get_netbios_name(tvbuff_t *tvb, int offset,
extern char *netbios_name_type_descr(int name_type);
extern void netbios_add_name( char* label, tvbuff_t *tvb, int offset,
proto_tree *tree);
-extern void dissect_netbios_payload(tvbuff_t *tvb, int offset,
- packet_info *pinfo, proto_tree *tree, int max_data);
+extern void dissect_netbios_payload(tvbuff_t *tvb, packet_info *pinfo,
+ proto_tree *tree);
#endif