aboutsummaryrefslogtreecommitdiff
path: root/doc/libmicrohttpd.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/libmicrohttpd.texi')
-rw-r--r--doc/libmicrohttpd.texi20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/libmicrohttpd.texi b/doc/libmicrohttpd.texi
index 97a79bdc..ad297faa 100644
--- a/doc/libmicrohttpd.texi
+++ b/doc/libmicrohttpd.texi
@@ -615,6 +615,26 @@ on platform. If application doesn't have requirements for any
615specific polling function, it's recommended to use this flag. This 615specific polling function, it's recommended to use this flag. This
616flag is very convenient for multiplatform applications. 616flag is very convenient for multiplatform applications.
617 617
618@item MHD_USE_POST_HANDSHAKE_AUTH_SUPPORT
619Tell the TLS library to support post handshake client authentication.
620Only useful in combination with @code{MHD_USE_TLS}.
621
622This option will only work if the underyling TLS library
623supports it (i.e. GnuTLS after 3.6.3). If the TLS library
624does not support it, MHD may ignore the option and proceed
625without supporting this features.
626
627@item MHD_USE_INSECURE_TLS_EARLY_DATA
628Tell the TLS library to support TLS v1.3 early data (0-RTT) with the
629resulting security drawbacks. Only enable this if you really know what
630you are doing. MHD currently does NOT enforce that this only affects
631GET requests! You have been warned.
632
633This option will only work if the underyling TLS library
634supports it (i.e. GnuTLS after 3.6.3). If the TLS library
635does not support it, MHD may ignore the option and proceed
636without supporting this features.
637
618@end table 638@end table
619@end deftp 639@end deftp
620 640