aboutsummaryrefslogtreecommitdiff
path: root/src/examples/demo_https.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/demo_https.c')
-rw-r--r--src/examples/demo_https.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/examples/demo_https.c b/src/examples/demo_https.c
index b2c67af9..14ca0bf7 100644
--- a/src/examples/demo_https.c
+++ b/src/examples/demo_https.c
@@ -972,6 +972,8 @@ main (int argc, char *const *argv)
972 MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) (120 /* seconds */), 972 MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) (120 /* seconds */),
973 MHD_OPTION_THREAD_POOL_SIZE, (unsigned int) NUMBER_OF_THREADS, 973 MHD_OPTION_THREAD_POOL_SIZE, (unsigned int) NUMBER_OF_THREADS,
974 MHD_OPTION_NOTIFY_COMPLETED, &response_completed_callback, NULL, 974 MHD_OPTION_NOTIFY_COMPLETED, &response_completed_callback, NULL,
975 /* Optionally, the gnutls_load_file() can be used to
976 load the key and the certificate from file. */
975 MHD_OPTION_HTTPS_MEM_KEY, srv_signed_key_pem, 977 MHD_OPTION_HTTPS_MEM_KEY, srv_signed_key_pem,
976 MHD_OPTION_HTTPS_MEM_CERT, srv_signed_cert_pem, 978 MHD_OPTION_HTTPS_MEM_CERT, srv_signed_cert_pem,
977 MHD_OPTION_END); 979 MHD_OPTION_END);