From f555c163f90c9de17ebcef8313f86404c5174ca9 Mon Sep 17 00:00:00 2001 From: mcr Date: Thu, 7 Oct 1999 23:47:09 +0000 Subject: Initial revision --- nfsfh.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 nfsfh.h (limited to 'nfsfh.h') diff --git a/nfsfh.h b/nfsfh.h new file mode 100644 index 00000000..c8737152 --- /dev/null +++ b/nfsfh.h @@ -0,0 +1,34 @@ +/* + * $Header: /tcpdump/master/tcpdump/nfsfh.h,v 1.6 1999-10-07 23:47:10 mcr Exp $ + * + * nfsfh.h - NFS file handle definitions (for portable use) + * + * Jeffrey C. Mogul + * Digital Equipment Corporation + * Western Research Laboratory + */ + +/* + * Internal representation of dev_t, because different NFS servers + * that we might be spying upon use different external representations. + */ +typedef struct { + u_int32_t Minor; /* upper case to avoid clashing with macro names */ + u_int32_t Major; +} my_devt; + +#define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major)) + +/* + * Many file servers now use a large file system ID. This is + * our internal representation of that. + */ +typedef struct { + my_devt Fsid_dev; /* XXX avoid name conflict with AIX */ + u_int32_t fsid_code; +} my_fsid; + +#define fsid_eq(a,b) ((a.fsid_code == b.fsid_code) &&\ + dev_eq(a.Fsid_dev, b.Fsid_dev)) + +extern void Parse_fh(caddr_t *, my_fsid *, ino_t *, char **, char **, int); -- cgit v1.2.1