summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-06-01 08:38:29 +0000
committerBodo Möller <bodo@openssl.org>2001-06-01 08:38:29 +0000
commitbe487c429ebe83f26b04f31112f755e4de13ef55 (patch)
treeb8456f6cc1fcea45f054fd1bb9e8b2b3c817ae1f /crypto/bio
parent80340f1fe96f49d9c64ad6486b4b05151e449931 (diff)
increase DEFAULT_BUFFER_SIZE (4K instead of just 1K)
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bf_buff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bf_buff.c b/crypto/bio/bf_buff.c
index f50e8f98a3..c90238bae1 100644
--- a/crypto/bio/bf_buff.c
+++ b/crypto/bio/bf_buff.c
@@ -70,7 +70,7 @@ static long buffer_ctrl(BIO *h, int cmd, long arg1, void *arg2);
static int buffer_new(BIO *h);
static int buffer_free(BIO *data);
static long buffer_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
-#define DEFAULT_BUFFER_SIZE 1024
+#define DEFAULT_BUFFER_SIZE 4096
static BIO_METHOD methods_buffer=
{