Honor BUFSIZZ definition in s_server, don't use tiny 32 byte

buffer (which leads to truncation of client cipher list).
This commit is contained in:
Bodo Möller 1999-09-25 11:24:53 +00:00
parent 4ad378ea43
commit dd73193c83

View file

@ -153,7 +153,7 @@ static DH *get_dh512(void)
#undef BUFSIZZ
#define BUFSIZZ 16*1024
static int bufsize=32;
static int bufsize=BUFSIZZ;
static int accept_socket= -1;
#define TEST_CERT "server.pem"