diff options
| author | John Dyson <dyson@FreeBSD.org> | 1995-08-31 01:39:31 +0000 |
|---|---|---|
| committer | John Dyson <dyson@FreeBSD.org> | 1995-08-31 01:39:31 +0000 |
| commit | 5dce41c5a5e24c2003e295542feeef95b3861714 (patch) | |
| tree | 6310786753a083a61be1cd328c0c615e4031377a /sys/kern/uipc_usrreq.c | |
| parent | d8c5d59031f18d48bd952da40cefe2017b675476 (diff) | |
Notes
Diffstat (limited to 'sys/kern/uipc_usrreq.c')
| -rw-r--r-- | sys/kern/uipc_usrreq.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index 91245c1b02fd..9e83333a9077 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94 - * $Id: uipc_usrreq.c,v 1.10 1995/08/08 02:22:16 davidg Exp $ + * $Id: uipc_usrreq.c,v 1.11 1995/08/16 16:13:27 bde Exp $ */ #include <sys/param.h> @@ -333,7 +333,9 @@ release: * and don't really want to reserve the sendspace. Their recvspace should * be large enough for at least one max-size datagram plus address. */ -#define PIPSIZ 4096 +#ifndef PIPSIZ +#define PIPSIZ 8192 +#endif u_long unpst_sendspace = PIPSIZ; u_long unpst_recvspace = PIPSIZ; u_long unpdg_sendspace = 2*1024; /* really max datagram size */ |
