aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-10-11 16:09:17 +0000
committerChristian Grothoff <christian@grothoff.org>2016-10-11 16:09:17 +0000
commitef7fe75ff225665f2dbea1bc773d9ce3862a2866 (patch)
tree29cb3dc8454f64004d0475b478144eb1415b05b4 /doc
parenta90ba78c016404a02eb9c81a9fd82694e00b10fb (diff)
downloadlibmicrohttpd-ef7fe75ff225665f2dbea1bc773d9ce3862a2866.tar.gz
libmicrohttpd-ef7fe75ff225665f2dbea1bc773d9ce3862a2866.zip
deprecate USE_SSL for USE_TLS, rename in code
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/tlsauthentication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/tlsauthentication.c b/doc/examples/tlsauthentication.c
index 30d19feb..b0b32171 100644
--- a/doc/examples/tlsauthentication.c
+++ b/doc/examples/tlsauthentication.c
@@ -250,7 +250,7 @@ main ()
250 } 250 }
251 251
252 daemon = 252 daemon =
253 MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_SSL, PORT, NULL, 253 MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_TLS, PORT, NULL,
254 NULL, &answer_to_connection, NULL, 254 NULL, &answer_to_connection, NULL,
255 MHD_OPTION_HTTPS_MEM_KEY, key_pem, 255 MHD_OPTION_HTTPS_MEM_KEY, key_pem,
256 MHD_OPTION_HTTPS_MEM_CERT, cert_pem, MHD_OPTION_END); 256 MHD_OPTION_HTTPS_MEM_CERT, cert_pem, MHD_OPTION_END);