aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-03-30 18:50:07 +0100
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-04-11 18:28:44 +0200
commit4e056c97946b690fd623e4bea6ef31ea74f66bcf (patch)
treec01c09078962f8f7f8ca676a8c702fdca29846dd /src/include/microhttpd.h
parentfd498a70642c54694d9a2672eefd27cccf00c9fa (diff)
downloadlibmicrohttpd-4e056c97946b690fd623e4bea6ef31ea74f66bcf.tar.gz
libmicrohttpd-4e056c97946b690fd623e4bea6ef31ea74f66bcf.zip
microhttpd.h: fixed feature name
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 9854703e..e83fdad3 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -6403,9 +6403,9 @@ enum MHD_FEATURE
6403 * Get whether automatic parsing of HTTP Cookie header is supported. 6403 * Get whether automatic parsing of HTTP Cookie header is supported.
6404 * If disabled, no MHD_COOKIE_KIND will be generated by MHD. 6404 * If disabled, no MHD_COOKIE_KIND will be generated by MHD.
6405 * MHD versions before 0x00097701 always support cookie parsing. 6405 * MHD versions before 0x00097701 always support cookie parsing.
6406 * @note Available since #MHD_VERSION 0x00097701 6406 * @note Available since #MHD_VERSION 0x01000200
6407 */ 6407 */
6408 MHD_FEATURE_HTTPS_COOKIE_PARSING = 24, 6408 MHD_FEATURE_COOKIE_PARSING = 24,
6409 6409
6410 /** 6410 /**
6411 * Get whether the early version the Digest Authorization (RFC 2069) is 6411 * Get whether the early version the Digest Authorization (RFC 2069) is
@@ -6499,6 +6499,10 @@ enum MHD_FEATURE
6499 MHD_FEATURE_FLEXIBLE_FD_SETSIZE = 34 6499 MHD_FEATURE_FLEXIBLE_FD_SETSIZE = 34
6500}; 6500};
6501 6501
6502#define MHD_FEATURE_HTTPS_COOKIE_PARSING _MHD_DEPR_IN_MACRO ( \
6503 "Value MHD_FEATURE_HTTPS_COOKIE_PARSING is deprecated, " \
6504 "use MHD_FEATURE_COOKIE_PARSING" \
6505 ) MHD_FEATURE_COOKIE_PARSING
6502 6506
6503/** 6507/**
6504 * Get information about supported MHD features. 6508 * Get information about supported MHD features.