aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nisplus.c
Commit message (Collapse)AuthorAgeFilesLines
* Removed many senseless pinfo parameters in RPC dissection and the layers above.Uwe Girlich2002-04-031-94/+94
| | | | svn path=/trunk/; revision=5090
* Allow a length of -1 to be specified when adding FT_NONE and FT_PROTOCOLGuy Harris2002-01-201-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
* From Ronnie Sahlberg: initial NDMPv3 support, and an update to hisGuy Harris2001-12-231-2/+2
| | | | | | e-mail address. svn path=/trunk/; revision=4444
* Make the resolution for time values be nanoseconds rather thanGuy Harris2001-09-141-6/+5
| | | | | | | | microseconds. Fix some "signed vs. unsigned" comparison warnings. svn path=/trunk/; revision=3934
* From Joerg Mayer: explicitly fill in all members of aGuy Harris2001-06-181-115/+115
| | | | | | | "header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
* Give a number of files RCS IDs.Guy Harris2001-06-121-0/+2
| | | | | | Give "proto_hier_stats.h" a standard header. svn path=/trunk/; revision=3540
* Changes to structure initializations not to initialize some but not allGuy Harris2001-06-021-1/+1
| | | | | | members, from Joerg Mayer. svn path=/trunk/; revision=3501
* There are no more old-style (non-tvbuffified) ONC RPC dissectors, so getGuy Harris2001-05-301-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
* If you put an item into the protocol tree with "dissect_rpc_data_tvb()",Guy Harris2001-05-231-19/+19
| | | | | | it must be FT_BYTES, not FT_STRING. svn path=/trunk/; revision=3439
* Fix one remaining "NIS" to be "NIS+".Guy Harris2001-05-071-1/+1
| | | | svn path=/trunk/; revision=3403
* NIS+ support, from Ronnie Sahlberg.Guy Harris2001-05-071-0/+1922
svn path=/trunk/; revision=3401