diff options
author | peter <peter@FreeBSD.org> | 1998-05-31 20:09:01 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-05-31 20:09:01 +0000 |
commit | 19ad2aa63b82a877a2b1485a9812dcf6e7757ea9 (patch) | |
tree | c618465310d3c2ab3f4033443d34c221eef41ba1 /sys/nfs/nfsrtt.h | |
parent | 401c250cc40de5fcfc5f53856a8194793ba32667 (diff) | |
download | FreeBSD-src-19ad2aa63b82a877a2b1485a9812dcf6e7757ea9.zip FreeBSD-src-19ad2aa63b82a877a2b1485a9812dcf6e7757ea9.tar.gz |
For the on-the-wire protocol, u_long -> u_int32_t; long -> int32_t;
int -> int32_t; u_short -> u_int16_t. Also, use mode_t instead of u_short
for storing modes (mode_t is a u_int16_t).
Obtained from: NetBSD
Diffstat (limited to 'sys/nfs/nfsrtt.h')
-rw-r--r-- | sys/nfs/nfsrtt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfsrtt.h b/sys/nfs/nfsrtt.h index 7915ff0..dd7ffae 100644 --- a/sys/nfs/nfsrtt.h +++ b/sys/nfs/nfsrtt.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsrtt.h 8.2 (Berkeley) 3/30/95 - * $Id: nfsrtt.h,v 1.7 1997/02/22 09:42:50 peter Exp $ + * $Id: nfsrtt.h,v 1.8 1997/06/03 17:22:47 dfr Exp $ */ @@ -95,7 +95,7 @@ struct nfsdrt { struct drt { int flag; /* Bits as defined above */ u_int32_t proc; /* NFS procedure number */ - u_long ipadr; /* IP address of client */ + u_int32_t ipadr; /* IP address of client */ int resptime; /* Response time (usec) */ struct timeval tstamp; /* Timestamp of log entry */ } drt[NFSRTTLOGSIZ]; |