summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorSteffen Nurpmeso <steffen@sdaoden.eu>2023-01-19 22:04:46 +0100
committerTomas Mraz <tomas@openssl.org>2023-01-30 09:37:00 +0100
commit51cf034433d528876f3c235c5150c5acfe88f24d (patch)
tree4c1abcd6851981ca4d93518f92cea46a740425d2 /ssl
parentd79bb5316e1318bd776d6b2d6723a36778e07f9d (diff)
SSL_conf_cmd: add support for IgnoreUnexpectedEOF
CLA: trivial Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20089)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_conf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/ssl_conf.c b/ssl/ssl_conf.c
index b46b5f15d9..45c7411907 100644
--- a/ssl/ssl_conf.c
+++ b/ssl/ssl_conf.c
@@ -401,6 +401,7 @@ static int cmd_Options(SSL_CONF_CTX *cctx, const char *value)
SSL_FLAG_TBL_INV("TxCertificateCompression", SSL_OP_NO_TX_CERTIFICATE_COMPRESSION),
SSL_FLAG_TBL_INV("RxCertificateCompression", SSL_OP_NO_RX_CERTIFICATE_COMPRESSION),
SSL_FLAG_TBL("KTLSTxZerocopySendfile", SSL_OP_ENABLE_KTLS_TX_ZEROCOPY_SENDFILE),
+ SSL_FLAG_TBL("IgnoreUnexpectedEOF", SSL_OP_IGNORE_UNEXPECTED_EOF),
};
if (value == NULL)
return -3;