summaryrefslogtreecommitdiff
path: root/nfsfh.h
Commit message (Collapse)AuthorAgeFilesLines
* Add the ndo parameter to some functionsFrancois-Xavier Le Bail2019-03-261-1/+1
| | | | This parameter will be needed at the next step.
* Don't overflow the Opaque_Handle buffer.Guy Harris2017-01-181-1/+1
| | | | | The file handle length can be arbitrarily large; don't assume its hex dump will fit in the buffer, just truncate it if it doesn't.
* More getting rid of old u_intN_t.Guy Harris2014-04-231-4/+4
|
* remove tcpdump's own CVS keywordsDenis Ovsienko2014-01-031-2/+0
| | | | | | Remove lots of $Header's and a few $Id's that all belong to the former CVS repository of tcpdump itself. These keywords have been frozen since the migration to git in late 2008.
* NFS: replace ino_t with u_int32_t (GH #335 pt. 1)Denis Ovsienko2013-10-121-1/+1
| | | | | | | | | | | | | | | | NFS file handle is an opaque server-issued sequence of bytes. Parse_fh() function implements heuristics to decode file handles generated by some NFS servers, among other information extracting the node (inode) number. It decodes only 32-bit node numbers. NFS implementations use ino_t C type to represent the node number. The type size may vary across implementations/encodings and may be missing during compile time. Tcpdump used to have its own typedef for ino_t. Gisle Vanem points that it caused a problem with MSVC v.16.00.40219.01 for 80x86, which defines the same type in <sys/types.h>. This change fixes tcpdump code to use u_int32_t and removes the typedef.
* Get rid of casts of pointers-to-const to pointers-to-nonconst.guy2002-04-241-2/+2
|
* Eliminate some unused parameters.fenner2001-09-171-2/+2
| | | | | | | | | | | Use const more. Use EXTRACT_* macros more. Use TCHECK* more. Use tok2str() to replace some home-grown workalikes. smb: - Get rid of private types, use tcpdump-defined types - Rename fdata and fdata1 to smb_fdata and smb_fdata1 to avoid conflict with IRIX library function.
* Give a bunch of header files RCS and SCCS IDs.guy2001-06-281-0/+2
|
* one more copyright clarification from Jeffrey Mogul.itojun2001-06-151-2/+33
|
* (my_fsid): addassar2000-06-011-1/+2
| | | | From Francisco Matias Cuenca-Acuna <mcuenca@george.rutgers.edu>
* Get rid of /* inside comment.fenner1999-12-151-2/+2
|
* incorporate NFS parsing code from NetBSD. adds support for nfsv3assar1999-11-211-3/+3
|
* Initial revisionmcr1999-10-071-0/+34