aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r--src/microhttpd/daemon.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 49bdc962..7f4449e5 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4634,6 +4634,12 @@ MHD_is_feature_supported(enum MHD_FEATURE feature)
4634#else 4634#else
4635 return MHD_NO; 4635 return MHD_NO;
4636#endif 4636#endif
4637 case MHD_FEATURE_HTTPS_KEY_PASSWORD:
4638#if HTTPS_SUPPORT && GNUTLS_VERSION_NUMBER >= 0x030100
4639 return MHD_YES;
4640#else
4641 return MHD_NO;
4642#endif
4637 } 4643 }
4638 return MHD_NO; 4644 return MHD_NO;
4639} 4645}