aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rpc.h
Commit message (Collapse)AuthorAgeFilesLines
* Give "dissect_rpc_string()" an extra "char **" argument; if it'sGuy Harris2000-01-221-2/+2
| | | | | | | | | | non-null, it returns through that argument a pointer to the displayed version of the string, otherwise it just frees that string. Use that to put, in the tree item for READDIR and READDIRPLUS reply directory entry items, the file name from the directory entry. svn path=/trunk/; revision=1521
* Prototype for dissect_rpc_bool().Uwe Girlich1999-12-141-1/+3
| | | | svn path=/trunk/; revision=1327
* prototype for dissect_rpc_data()Uwe Girlich1999-12-021-1/+3
| | | | svn path=/trunk/; revision=1184
* Make various "value_string" tables "const"; this allows the compiler toGuy Harris1999-11-191-2/+2
| | | | | | | | | stuff them into shared read-only space. Put the "VALS()" cast macro into the initialization of an "hf_register_info" array. svn path=/trunk/; revision=1072
* Added Uwe's update to RPC.Gilbert Ramirez1999-11-191-1/+3
| | | | svn path=/trunk/; revision=1069
* Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1999-11-161-3/+1
| | | | | | | | | | | | | | | | | dynamically-assigned "ett_" integer values, assigned by "proto_register_subtree_array()"; this: obviates the need to update "packet.h" whenever you add a new subtree type - you only have to add a call to "proto_register_subtree_array()" to a "register" routine and an array of pointers to "ett_", if they're not already there, and add a pointer to the new "ett_" variable to the array, if they are there; would allow run-time-loaded dissectors to allocate subtree types when they're loaded. svn path=/trunk/; revision=1043
* Got rid of dissect_rpc_string routine, renamed dissect_rpc_string_item toNathan Neulinger1999-11-151-3/+1
| | | | | | | | | | | | dissect_rpc_string. Replaced only instance of this routine being called. Added display filtering to rpc dissector. Replaced most instances of proto_tree_add_text with proto_tree_add_item. Added program version and procedure to the program tree in addition to it being in the RPC tree. svn path=/trunk/; revision=1037
* Uwe Girlich's patches for nfs,mount,portmap and addition of nlm.Nathan Neulinger1999-11-151-2/+2
| | | | svn path=/trunk/; revision=1034
* Added mount dissector.Nathan Neulinger1999-11-111-1/+2
| | | | | | | | | | | Added stat dissector. Enhancements to portmap dissector. Added rpc_prog_name function to packet-rpc to retrieve the name of an rpc program. This should likely eventually be modified to use the /etc/rpc or rpc.bynumber NIS maps in addition to the programs that are registered within ethereal. svn path=/trunk/; revision=1016
* Expanded bootparams dissector to handle decoding getfile calls and replies.Nathan Neulinger1999-11-111-1/+5
| | | | | | | | | | | | | | Added proto_registrar_get_name routine to proto.c to retrieve the name of particular proto_tree field. Added dissect_rpc_string_item to packet-rpc.c. This routine does the same thing as dissect_rpc_string, except it takes a hfindex of a proto_tree item instead of a name. It uses the p_r_get_name call to get the name, and adds the actual string content as a hidden field (so that the subtree highlights the entire data area - length, data, and padding). There is only one call to dissect_rpc_string, so I believe that this routine should replace it. svn path=/trunk/; revision=1011
* Updates to the ONC RPC and NFS code, from Uwe Girlich.Guy Harris1999-11-051-2/+5
| | | | svn path=/trunk/; revision=976
* Uwe Girlich's ONC RPC and NFS dissectors.Guy Harris1999-10-291-0/+103
svn path=/trunk/; revision=946