libmicrohttpd2

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

commit bbf587cd08c3820290e5fdb3cff180b515eb1697
parent c90efdbe41e75249547e01ef3ceb80d8d394f52c
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Tue,  9 Dec 2025 20:44:09 +0100

tls_gnu_conn_data.h: changed type of debug flags

Diffstat:
Msrc/mhd2/tls_gnu_conn_data.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

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