aboutsummaryrefslogtreecommitdiffstats
path: root/packet-hclnfsd.c
AgeCommit message (Collapse)AuthorFilesLines
2003-08-17Prettifying the RPC and NFS (v3) layer.sahlberg1-5/+5
Add more text to the COL_INFO line as well as the protocol trees for NFS and RPC git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8179 f5534014-38df-0310-8fa8-9805f1628bb7
2002-11-01Updated all remaining ONC-RPC dissectors to pass the procedure name ↵sahlberg1-3/+27
value_string in the call to prc_init_proc_table() git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6528 f5534014-38df-0310-8fa8-9805f1628bb7
2002-10-23Add an extra argument to "rpc_init_proc_table()" that can specify an hf_guy1-2/+2
value for a field to be used for the procedure number for that version of the protocol; use that field, if specified, instead of just putting in a generic "rpc.procedure" field. Have the ypserv dissector register those fields and supply them to "rpc_init_proc_table()". Supply -1 for other RPC programs (for now), meaning "no such field exists". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6486 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-36/+36
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6117 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hjmayer1-5/+1
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5932 f5534014-38df-0310-8fa8-9805f1628bb7
2002-07-31From Mike Frisch: fix a problem with decoding the AUTHORIZE call.guy1-4/+4
Update his e-mail address in the AUTHORS file while we're at it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5923 f5534014-38df-0310-8fa8-9805f1628bb7
2002-05-10From Joerg Mayer: make a pile of stuff not used outside one source fileguy1-2/+2
static, and add a new "packet-data.h" to declare "proto_data". Display escape sequences in octal in the IAPP dissector, as is now done in the RADIUS dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5441 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-25Include <string.h> to declare "strlen()".guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5250 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-03Removed many senseless pinfo parameters in RPC dissection and the layers above.girlich1-76/+75
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5090 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-01Use "proto_tree_add_item()" to add IP addresses; that eliminates a bunchguy1-13/+3
of work *and* gets rid of the incorrect "convert from network to host byte order and then byte-swap" code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5075 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-01Fix to decoding of the AUTHORIZE call, from Mike Frisch.guy1-10/+76
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5074 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-01Bug fix from Mike Frisch.guy1-24/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5072 f5534014-38df-0310-8fa8-9805f1628bb7
2002-01-12From Ronnie Sahlberg: file handle to file name resolution in NFS andguy1-6/+2
related protocols. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4533 f5534014-38df-0310-8fa8-9805f1628bb7
2001-06-18From Joerg Mayer: explicitly fill in all members of aguy1-35/+35
"header_field_info" structure, including the ones that are later set by the routines to register fields. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3561 f5534014-38df-0310-8fa8-9805f1628bb7
2001-05-30There are no more old-style (non-tvbuffified) ONC RPC dissectors, so getguy1-57/+57
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3477 f5534014-38df-0310-8fa8-9805f1628bb7
2001-05-23If you put an item into the protocol tree with "dissect_rpc_data_tvb()",guy1-3/+3
it must be FT_BYTES, not FT_STRING. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3441 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-11Tvbuffified HCLNFSD dissector, from Ronnie Sahlberg.guy1-217/+284
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3291 f5534014-38df-0310-8fa8-9805f1628bb7
2001-02-06The "short name" and "filter name" were reversed; put them in the rightguy1-2/+2
order. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2996 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-28Allow dissectors of ONC RPC-based protocols to register themselvesguy1-3/+3
either with a table of old-style dissectors or a table of tvbuffified dissectors, and have the RPC dissector pass the appropriate arguments to the dissectors. Finish tvbuffifying the NLM dissector, getting rid of the last traces of old-style dissector code. In those routines in the NFS dissector that take new-style arguments (because they're called from the NLM dissector), make them take an offset as an argument, so they don't assume that they're handed a tvbuff starting at the stuff they're supposed to dissect, and make the versions that take old-style arguments construct a tvbuff and call the versions that take new-style arguments. Do the latter with the routines in "packet-rpc.c" as well. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2943 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-27HCLNFSD support, from Mike Frisch.guy1-0/+762
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2941 f5534014-38df-0310-8fa8-9805f1628bb7