mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 23:56:57 +02:00
MINOR: ssl: add DEFAULT_SSL_MAX_RECORD to set the record size at build time
For some deployments it may help to have tune.ssl.maxrecord set to a more efficient one at build time. This build setting allows this.
This commit is contained in:
parent
c5890e66cd
commit
03effc15d6
@ -142,6 +142,9 @@ struct global global = {
|
|||||||
.chksize = BUFSIZE,
|
.chksize = BUFSIZE,
|
||||||
#ifdef USE_OPENSSL
|
#ifdef USE_OPENSSL
|
||||||
.sslcachesize = SSLCACHESIZE,
|
.sslcachesize = SSLCACHESIZE,
|
||||||
|
#ifdef DEFAULT_SSL_MAX_RECORD
|
||||||
|
.ssl_max_record = DEFAULT_SSL_MAX_RECORD,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifdef USE_ZLIB
|
#ifdef USE_ZLIB
|
||||||
.zlibmemlevel = 8,
|
.zlibmemlevel = 8,
|
||||||
|
Loading…
Reference in New Issue
Block a user