aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nisplus.c
AgeCommit message (Collapse)AuthorFilesLines
2002-04-03Removed many senseless pinfo parameters in RPC dissection and the layers above.Uwe Girlich1-94/+94
svn path=/trunk/; revision=5090
2002-01-20Allow a length of -1 to be specified when adding FT_NONE and FT_PROTOCOLGuy Harris1-19/+18
items to the protocol tree; it's interpreted as "the rest of the data in the tvbuff". This can be used if 1) the item covers the entire packet or the remaining payload in the packet or 2) the item's length won't be known until it's dissected, and will be then set with "proto_item_set_len()" - if an exception is thrown in the dissection, it means the item ran *past* the end of the tvbuff, so saying it runs to the end of the tvbuff is reasonable. Convert a number of "proto_tree_add_XXX()" calls using "tvb_length_remaining()", values derived from the result of "tvb_length()", or 0 (in the case of items whose length is unknown) to use -1 instead (using 0 means that if an exception is thrown, selecting the item highlights nothing; using -1 means it highlights all the data for that item that's available). In some places where "tvb_length()" or "tvb_length_remaining()" was used to determine how large a packet is, use "tvb_reported_length()" or "tvb_reported_length_remaining()", instead - the first two calls indicate how much captured data was in the packet, the latter two calls indicate how large the packet actually was (and the fact that using the latter could cause BoundsError exceptions to be thrown is a feature - if such an exception is thrown, the frame really *was* short, and it should be tagged as such). Replace some "proto_tree_add_XXX()" calls with equivalent "proto_tree_add_item()" calls. Fix some indentation. svn path=/trunk/; revision=4578
2001-12-23From Ronnie Sahlberg: initial NDMPv3 support, and an update to hisGuy Harris1-2/+2
e-mail address. svn path=/trunk/; revision=4444
2001-09-14Make the resolution for time values be nanoseconds rather thanGuy Harris1-6/+5
microseconds. Fix some "signed vs. unsigned" comparison warnings. svn path=/trunk/; revision=3934
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-115/+115
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-06-12Give a number of files RCS IDs.Guy Harris1-0/+2
Give "proto_hier_stats.h" a standard header. svn path=/trunk/; revision=3540
2001-06-02Changes to structure initializations not to initialize some but not allGuy Harris1-1/+1
members, from Joerg Mayer. svn path=/trunk/; revision=3501
2001-05-30There are no more old-style (non-tvbuffified) ONC RPC dissectors, so getGuy Harris1-81/+81
rid of support for them, and remove the "_tvb" from the end of the names of RPC type dissection routines. Update Gerald's e-mail address. svn path=/trunk/; revision=3477
2001-05-23If you put an item into the protocol tree with "dissect_rpc_data_tvb()",Guy Harris1-19/+19
it must be FT_BYTES, not FT_STRING. svn path=/trunk/; revision=3439
2001-05-07Fix one remaining "NIS" to be "NIS+".Guy Harris1-1/+1
svn path=/trunk/; revision=3403
2001-05-07NIS+ support, from Ronnie Sahlberg.Guy Harris1-0/+1922
svn path=/trunk/; revision=3401