aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-08-07 11:52:25 +0000
committerng0 <ng0@n0.is>2019-08-07 11:52:25 +0000
commit5a2872c15f0fd2ceebdb8b5f959021698ddb44f0 (patch)
treec57fe0a2a290869046b256af0ac80c6736df09d3 /src/microhttpd/daemon.c
parentf8070814c6871bc50d7964a3c88d2a6c03be9c0e (diff)
parentb84ee1fa41c53c43aa7ed1583c36af5cb7c77a0f (diff)
downloadlibmicrohttpd-5a2872c15f0fd2ceebdb8b5f959021698ddb44f0.tar.gz
libmicrohttpd-5a2872c15f0fd2ceebdb8b5f959021698ddb44f0.zip
Merge remote-tracking branch 'origin/master' into dev/ng0/gsoc2019
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r--src/microhttpd/daemon.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 16655f65..fb4abd5d 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -2536,7 +2536,12 @@ internal_add_connection (struct MHD_Daemon *daemon,
2536 else 2536 else
2537 { 2537 {
2538#ifdef HTTPS_SUPPORT 2538#ifdef HTTPS_SUPPORT
2539 gnutls_init_flags_t flags; 2539#if (GNUTLS_VERSION_NUMBER+0 >= 0x030500)
2540 gnutls_init_flags_t
2541#else
2542 unsigned int
2543#endif
2544 flags;
2540 2545
2541 flags = GNUTLS_SERVER; 2546 flags = GNUTLS_SERVER;
2542#if (GNUTLS_VERSION_NUMBER+0 >= 0x030402) 2547#if (GNUTLS_VERSION_NUMBER+0 >= 0x030402)