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:
parent
4ad378ea43
commit
dd73193c83
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue