aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 682b7651..999ca590 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -345,14 +345,21 @@ enum MHD_OPTION
345 */ 345 */
346 MHD_OPTION_PER_IP_CONNECTION_LIMIT = 5, 346 MHD_OPTION_PER_IP_CONNECTION_LIMIT = 5,
347 347
348 /* server root path used while serving http pages */ 348 /**
349 MHD_OPTION_DOC_ROOT = 6, 349 * Filename for the private key (key.pem) to be used by the
350 350 * HTTPS daemon. This option should be followed by an
351 /* private key path used by the HTTPS daemon */ 351 * "const char*" argument. The memory of the filename must
352 MHD_OPTION_HTTPS_KEY_PATH = 7, 352 * not be released until the application terminates.
353 */
354 MHD_OPTION_HTTPS_KEY_PATH = 6,
353 355
354 /* certificate path used by the HTTPS daemon */ 356 /**
355 MHD_OPTION_HTTPS_CERT_PATH = 8, 357 * Filename for the certificate (cert.pem) to be used by the
358 * HTTPS daemon. This option should be followed by an
359 * "const char*" argument. The memory of the filename must
360 * not be released until the application terminates.
361 */
362 MHD_OPTION_HTTPS_CERT_PATH = 7,
356}; 363};
357 364
358/** 365/**