libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 81be862f3da4c557aeb47fbc1b0f5e6f1f9cd9dd
parent c9fe6e476df25a3302c3f839d422c86d7d7f6a2a
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sat, 15 Aug 2026 12:18:27 +0200

tls_open_funcs: corrected comment

Diffstat:
Msrc/mhd2/tls_open_funcs.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mhd2/tls_open_funcs.c b/src/mhd2/tls_open_funcs.c @@ -945,7 +945,7 @@ daemon_init_ctx (struct MHD_Daemon *restrict d, /* There is no reason to use re-negotiation with HTTP */ ctx_opts |= SSL_OP_NO_RENEGOTIATION; - /* Do not use session resumption for now */ + /* Do not use TLS 1.3 resumption for now */ ctx_opts |= SSL_OP_NO_TICKET; (void)SSL_CTX_set_options (d_tls->ctx,