aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-14 14:36:55 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-20 23:22:53 +0300
commit4e8e5e653d7862378e4f3522905e2f4b4ed4067b (patch)
tree1231117d7efe247381ef40f007bd81372f0c624d /src/microhttpd/internal.h
parenteaf1fa0889e9f9621f115ad5f13084e693ddb981 (diff)
downloadlibmicrohttpd-4e8e5e653d7862378e4f3522905e2f4b4ed4067b.tar.gz
libmicrohttpd-4e8e5e653d7862378e4f3522905e2f4b4ed4067b.zip
Removed request line and headers processing old functions and variables
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index e07ad6de..0ea0953e 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -1199,23 +1199,6 @@ struct MHD_Request
1199 * The data of the request line / request headers processing 1199 * The data of the request line / request headers processing
1200 */ 1200 */
1201 union MHD_HeadersProcessing hdrs; 1201 union MHD_HeadersProcessing hdrs;
1202
1203 /**
1204 * Last incomplete header line during parsing of headers.
1205 * Allocated in pool. Only valid if state is
1206 * either #MHD_CONNECTION_REQ_HEADERS_RECEIVING or
1207 * #MHD_CONNECTION_FOOTERS_RECEIVING.
1208 */
1209 char *last;
1210
1211 /**
1212 * Position after the colon on the last incomplete header
1213 * line during parsing of headers.
1214 * Allocated in pool. Only valid if state is
1215 * either #MHD_CONNECTION_REQ_HEADERS_RECEIVING or
1216 * #MHD_CONNECTION_FOOTERS_RECEIVING.
1217 */
1218 char *colon;
1219}; 1202};
1220 1203
1221 1204