diff options
author | tedu <> | 2014-10-30 16:08:31 +0000 |
---|---|---|
committer | tedu <> | 2014-10-30 16:08:31 +0000 |
commit | 8d5fe1bc2f13cf7f6d50bfaf47fbd25a6fd15cbb (patch) | |
tree | c96b989b6152a9ef3c95870b8c073d790b0f5596 | |
parent | 2f257e45d0334e27ec19cc8c0a77b377612c6c3b (diff) | |
download | openbsd-8d5fe1bc2f13cf7f6d50bfaf47fbd25a6fd15cbb.tar.gz openbsd-8d5fe1bc2f13cf7f6d50bfaf47fbd25a6fd15cbb.tar.bz2 openbsd-8d5fe1bc2f13cf7f6d50bfaf47fbd25a6fd15cbb.zip |
my mistake. we already did increase buffers to 16k; increasing to 64k
would be the next stage of embiggening. restore 16k.
-rw-r--r-- | src/usr.bin/nc/netcat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/nc/netcat.c b/src/usr.bin/nc/netcat.c index a8e90186e9..7a523ccaba 100644 --- a/src/usr.bin/nc/netcat.c +++ b/src/usr.bin/nc/netcat.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: netcat.c,v 1.125 2014/10/30 16:06:07 tedu Exp $ */ | 1 | /* $OpenBSD: netcat.c,v 1.126 2014/10/30 16:08:31 tedu Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Eric Jackson <ericj@monkey.org> | 3 | * Copyright (c) 2001 Eric Jackson <ericj@monkey.org> |
4 | * | 4 | * |
@@ -68,7 +68,7 @@ | |||
68 | #define POLL_NETOUT 1 | 68 | #define POLL_NETOUT 1 |
69 | #define POLL_NETIN 2 | 69 | #define POLL_NETIN 2 |
70 | #define POLL_STDOUT 3 | 70 | #define POLL_STDOUT 3 |
71 | #define BUFSIZE 2048 | 71 | #define BUFSIZE 16384 |
72 | 72 | ||
73 | /* Command Line Options */ | 73 | /* Command Line Options */ |
74 | int dflag; /* detached, no stdin */ | 74 | int dflag; /* detached, no stdin */ |