aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-browse.h
AgeCommit message (Collapse)AuthorFilesLines
2003-11-16Export "protocol_t" as an opaque type.Guy Harris1-7/+1
Make "proto_is_protocol_enabled()" and "proto_get_protocol_short_name()" take a "protocol_t *" as an argument, so they don't have to look up the "protocol_t" - this will probably speed them up considerably, and they're called on almost every dissector handoff. Get rid of a number of "proto_is_protocol_enabled()" calls that aren't necessary (dissectors called through handles, including those called through dissector tables, or called as heuristic dissectors, aren't even called if their protocol isn't enabled). Change some direct dissector calls to go through handles. svn path=/trunk/; revision=8979
2003-02-17Dissect the server type bitfield in NetServerGetInfo for SERVER_INFO_101Tim Potter1-3/+5
and SERVER_INFO_102. Modify all callers to use the new interface. svn path=/trunk/; revision=7158
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2001-08-05Remote API protocol (that seems to be what it's called in a number ofGuy Harris1-1/+4
places) dissector tvbuffified, from Ronnie Sahlberg and me. Additional "are we past the end of the buffer" checks added, so that we don't hand random junk to the transaction and transact2 dissectors. svn path=/trunk/; revision=3824
2001-08-01Packets sent to \MAILSLOT\LANMAN appear to be browser announcements (forGuy Harris1-2/+5
an older version of the protocol than the one for packets sent to \MAILSLOT\BROWSE), rather than being LANMAN pipe packets. svn path=/trunk/; revision=3803
2001-07-12Tvbuffified SMB BROWSER dissector, from Ronnie Sahlberg.Guy Harris1-6/+8
svn path=/trunk/; revision=3706
2001-03-18Move the declaration of routines exported from "packet-smb-browse.c"Guy Harris1-0/+30
into a "packet-smb-browse.h" header file, and have modules that import those routines include "packet-smb-browse.h" rather than declaring the routines themselves; do the same for routines exported from "packet-smb-logon.c". Make routines and arrays not exported static, and make routines that return a true/false return value "gboolean" rather than "guint32". svn path=/trunk/; revision=3147