diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-11-28 01:02:29 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-11-28 01:02:29 +0000 |
commit | f2e25225753fc4f7d20d5116e313db39c5ccca67 (patch) | |
tree | 71aaab39a64c9d85c05af83ffe499b1bf65f635c /sys/nfs | |
parent | 02e22c96df75267299824586e884184618458f3e (diff) |
crank max sizes. from millert. believed to solve pr3561
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfsproto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfsproto.h b/sys/nfs/nfsproto.h index 7d9bb50ba22..fa255d53178 100644 --- a/sys/nfs/nfsproto.h +++ b/sys/nfs/nfsproto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsproto.h,v 1.5 2003/06/02 23:28:20 millert Exp $ */ +/* $OpenBSD: nfsproto.h,v 1.6 2003/11/28 01:02:28 tedu Exp $ */ /* $NetBSD: nfsproto.h,v 1.1 1996/02/18 11:54:06 fvdl Exp $ */ /* @@ -56,8 +56,8 @@ #define NFS_VER3 3 #define NFS_VER4 4 #define NFS_V2MAXDATA 8192 -#define NFS_MAXDGRAMDATA 16384 -#define NFS_MAXDATA 32768 +#define NFS_MAXDGRAMDATA 32768 +#define NFS_MAXDATA MAXBSIZE #define NFS_MAXPATHLEN 1024 #define NFS_MAXNAMLEN 255 #define NFS_MAXPKTHDR 404 |