From: Bodo Möller Date: Fri, 1 Jun 2001 08:39:02 +0000 (+0000) Subject: increase DEFAULT_BUFFER_SIZE (4K instead of just 1K) X-Git-Tag: OpenSSL_0_9_6b~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=41d208db799806f601f7987afa115f1aee19a6e5;p=oweals%2Fopenssl.git increase DEFAULT_BUFFER_SIZE (4K instead of just 1K) --- 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= {