gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r38124 - libmicrohttpd/src/include


From: gnunet
Subject: [GNUnet-SVN] r38124 - libmicrohttpd/src/include
Date: Tue, 11 Oct 2016 18:08:34 +0200

Author: grothoff
Date: 2016-10-11 18:08:34 +0200 (Tue, 11 Oct 2016)
New Revision: 38124

Modified:
   libmicrohttpd/src/include/microhttpd.h
Log:
deprecate USE_SSL for USE_TLS

Modified: libmicrohttpd/src/include/microhttpd.h
===================================================================
--- libmicrohttpd/src/include/microhttpd.h      2016-10-11 15:21:38 UTC (rev 
38123)
+++ libmicrohttpd/src/include/microhttpd.h      2016-10-11 16:08:34 UTC (rev 
38124)
@@ -538,15 +538,15 @@
   MHD_USE_DEBUG = 1,
 
   /**
-   * Run in HTTPS mode.  Same as #MHD_USE_TLS, just using the historic name.
-   */
-  MHD_USE_SSL = 2,
-
-  /**
    * Run in HTTPS mode.  The modern protocol is called TLS.
    */
   MHD_USE_TLS = 2,
 
+  /** @deprecated */
+#define MHD_USE_SSL \
+  _MHD_DEPR_IN_MACRO("Value MHD_USE_SSL is deprecated, use MHD_USE_TLS") \
+  MHD_USE_TLS
+
   /**
    * Run using one thread per connection.
    */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]