aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-10-12 22:25:43 +0200
committerChristian Grothoff <christian@grothoff.org>2016-10-12 22:25:52 +0200
commit06867e0f11193f550038e3c2875130d46666aaac (patch)
treeed72bd9d43c7b64f7d4a8a7af2f9fd2a48ee64be
parentd2a7648847ae4c4520ba34bb1879f68219717139 (diff)
downloadlibmicrohttpd-06867e0f11193f550038e3c2875130d46666aaac.tar.gz
libmicrohttpd-06867e0f11193f550038e3c2875130d46666aaac.zip
do not deprecate so quickly, otherwise we get compilation issues
-rw-r--r--src/include/microhttpd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 1d160dad..6607f86f 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -541,11 +541,15 @@ enum MHD_FLAG
541 * Run in HTTPS mode. The modern protocol is called TLS. 541 * Run in HTTPS mode. The modern protocol is called TLS.
542 */ 542 */
543 MHD_USE_TLS = 2, 543 MHD_USE_TLS = 2,
544 MHD_USE_SSL = 2,
544 545
546#if 0
547 /* let's do this later once versions that define MHD_USE_TLS a more widely deployed. */
545 /** @deprecated */ 548 /** @deprecated */
546#define MHD_USE_SSL \ 549#define MHD_USE_SSL \
547 _MHD_DEPR_IN_MACRO("Value MHD_USE_SSL is deprecated, use MHD_USE_TLS") \ 550 _MHD_DEPR_IN_MACRO("Value MHD_USE_SSL is deprecated, use MHD_USE_TLS") \
548 MHD_USE_TLS 551 MHD_USE_TLS
552#endif
549 553
550 /** 554 /**
551 * Run using one thread per connection. 555 * Run using one thread per connection.