aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-10-11 16:08:34 +0000
committerChristian Grothoff <christian@grothoff.org>2016-10-11 16:08:34 +0000
commita90ba78c016404a02eb9c81a9fd82694e00b10fb (patch)
tree0e82257ea4b316945b873a97272130435f0ae489 /src/include
parentdc5610c14b93a2fe82758ec228926ba6f04eee17 (diff)
downloadlibmicrohttpd-a90ba78c016404a02eb9c81a9fd82694e00b10fb.tar.gz
libmicrohttpd-a90ba78c016404a02eb9c81a9fd82694e00b10fb.zip
deprecate USE_SSL for USE_TLS
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 6a291f9c..76d832ea 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -538,15 +538,15 @@ enum MHD_FLAG
538 MHD_USE_DEBUG = 1, 538 MHD_USE_DEBUG = 1,
539 539
540 /** 540 /**
541 * Run in HTTPS mode. Same as #MHD_USE_TLS, just using the historic name.
542 */
543 MHD_USE_SSL = 2,
544
545 /**
546 * Run in HTTPS mode. The modern protocol is called TLS. 541 * Run in HTTPS mode. The modern protocol is called TLS.
547 */ 542 */
548 MHD_USE_TLS = 2, 543 MHD_USE_TLS = 2,
549 544
545 /** @deprecated */
546#define MHD_USE_SSL \
547 _MHD_DEPR_IN_MACRO("Value MHD_USE_SSL is deprecated, use MHD_USE_TLS") \
548 MHD_USE_TLS
549
550 /** 550 /**
551 * Run using one thread per connection. 551 * Run using one thread per connection.
552 */ 552 */