aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-pipe.c
AgeCommit message (Collapse)AuthorFilesLines
2000-08-13Add the "Edit:Protocols..." feature which currently only implementsLaurent Deniel1-1/+4
the following: It is now possible to enable/disable a particular protocol decoding (i.e. the protocol dissector is void or not). When a protocol is disabled, it is displayed as Data and of course, all linked sub-protocols are disabled as well. Disabling a protocol could be interesting: - in case of buggy dissectors - in case of wrong heuristics - for performance reasons - to decode the data as another protocol (TODO) Currently (if I am not wrong), all dissectors but NFS can be disabled (and dissectors that do not register protocols :-) I do not like the way the RPC sub-dissectors are disabled (in the sub-dissectors) since this could be done in the RPC dissector itself, knowing the sub-protocol hfinfo entry (this is why, I've not modified the NFS one yet). Two functions are added in proto.c : gboolean proto_is_protocol_enabled(int n); void proto_set_decoding(int n, gboolean enabled); and two MACROs which can be used in dissectors: OLD_CHECK_DISPLAY_AS_DATA(index, pd, offset, fd, tree) CHECK_DISPLAY_AS_DATA(index, tvb, pinfo, tree) See also the XXX in proto_dlg.c and proto.c around the new functions. svn path=/trunk/; revision=2267
2000-05-31Add routines for adding items to a protocol tree that take arguments ofGuy Harris1-8/+8
a particular type, rather than taking a varargs list, along the lines of the "proto_tree_add_XXX_format()" routines. Replace most calls to "proto_tree_add_item()" and "proto_tree_add_item_hidden()" with calls to those routines. Rename "proto_tree_add_item()" and "proto_tree_add_item_hidden()" to "proto_tree_add_item_old()" and "proto_tree_add_item_hidden_old()", and add new "proto_tree_add_item()" and "proto_tree_add_item_hidden()" routines that don't take the item to be added as an argument - instead, they fetch the argument from the packet whose tvbuff was handed to them, from the offset handed to them. svn path=/trunk/; revision=2031
2000-05-14Add a comment giving the URL of the CIFS Remote Administration ProtocolGuy Harris1-4/+17
spec (which covers some of what this file dissects). Dissect the share type in NetShareEnum replies as a type value (using values from said spec), not just as a number. svn path=/trunk/; revision=1958
2000-05-14Put in some checks to make sure we don't go past the end of the frameGuy Harris1-3/+16
when fetching strings in NetShareEnum and NetServEnum2 replies. svn path=/trunk/; revision=1956
2000-05-14In a NetServEnum, there's only one byte of padding after the share name.Guy Harris1-3/+2
(See, for example ftp://ftp.microsoft.com/developr/drg/CIFS/cifsrap2.txt .) svn path=/trunk/; revision=1955
2000-05-11Add tvbuff class.Gilbert Ramirez1-87/+87
Add exceptions routines. Convert proto_tree_add_*() routines to require tvbuff_t* argument. Convert all dissectors to pass NULL argument ("NullTVB" macro == NULL) as the tvbuff_t* argument to proto_tree_add_*() routines. dissect_packet() creates a tvbuff_t, wraps the next dissect call in a TRY block, will print "Short Frame" on the proto_tree if a BoundsError exception is caught. The FDDI dissector is converted to use tvbuff's. svn path=/trunk/; revision=1939
2000-03-06Fix some "proto_tree_add_text()" calls.Guy Harris1-3/+3
svn path=/trunk/; revision=1695
2000-02-19Small fix to the LanMan stuff ...Richard Sharpe1-2/+2
svn path=/trunk/; revision=1650
2000-02-14Protocol abbreviations should be all lower case, as they're used inGuy Harris1-10/+3
filter expressions, and names in those expressions are currently case-sensitive, and obliging people to type "Lanman" to filter for Lanman packets is overkill. Get rid of the comment saying that the routines for mailslot and pipe dissecting should perhaps be migrated to another file, as this and "packet-smb-mailslot.c" are the other files to which they were migrated. svn path=/trunk/; revision=1632
2000-02-14Jeff Foster's SMB Mailslot and Netlogin dissectors; he splitGuy Harris1-0/+1244
"packet-smb.c" up into several files. svn path=/trunk/; revision=1629