libmicrohttpd2

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

commit 07af56007fef2589c6559bc42827637b6e29be06
parent 8348f26bb8b3e6f7bda95054a4543f18f697464b
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Mon,  8 Dec 2025 19:47:08 +0100

tls_open_conn_data.h: changed type of debug flags

Diffstat:
Msrc/mhd2/tls_open_conn_data.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mhd2/tls_open_conn_data.h b/src/mhd2/tls_open_conn_data.h @@ -58,9 +58,9 @@ #ifndef NDEBUG struct mhd_TlsOpenConnDebug { - unsigned int is_inited; - unsigned int is_tls_handshake_completed; - unsigned int is_failed; + bool is_inited; + bool is_tls_handshake_completed; + bool is_failed; }; #endif /* ! NDEBUG */