libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 06867e0f11193f550038e3c2875130d46666aaac
parent d2a7648847ae4c4520ba34bb1879f68219717139
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 12 Oct 2016 22:25:43 +0200

do not deprecate so quickly, otherwise we get compilation issues

Diffstat:
Msrc/include/microhttpd.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -541,11 +541,15 @@ enum MHD_FLAG * Run in HTTPS mode. The modern protocol is called TLS. */ MHD_USE_TLS = 2, + MHD_USE_SSL = 2, +#if 0 + /* let's do this later once versions that define MHD_USE_TLS a more widely deployed. */ /** @deprecated */ #define MHD_USE_SSL \ _MHD_DEPR_IN_MACRO("Value MHD_USE_SSL is deprecated, use MHD_USE_TLS") \ MHD_USE_TLS +#endif /** * Run using one thread per connection.