aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/response.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-07-28 14:14:53 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-06 10:43:15 +0300
commit93ef4701123acd9c3f606b4d983dbaa840f427b4 (patch)
treea4a592b27345068aacafeebc0afbc2a4772fe575 /src/microhttpd/response.c
parentbb33e458efbb383c5b557ef7a585c08b49dcdd43 (diff)
downloadlibmicrohttpd-93ef4701123acd9c3f606b4d983dbaa840f427b4.tar.gz
libmicrohttpd-93ef4701123acd9c3f606b4d983dbaa840f427b4.zip
Internal refactoring: moved all request-related members to separate structure
This should improve readability of the code and simplify reset.
Diffstat (limited to 'src/microhttpd/response.c')
-rw-r--r--src/microhttpd/response.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index cffb859a..d352a804 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -2120,7 +2120,7 @@ MHD_response_execute_upgrade_ (struct MHD_Response *response,
2120 /* hand over socket to application */ 2120 /* hand over socket to application */
2121 response->upgrade_handler (response->upgrade_handler_cls, 2121 response->upgrade_handler (response->upgrade_handler_cls,
2122 connection, 2122 connection,
2123 connection->client_context, 2123 connection->rq.client_context,
2124 connection->read_buffer, 2124 connection->read_buffer,
2125 rbo, 2125 rbo,
2126#ifdef HTTPS_SUPPORT 2126#ifdef HTTPS_SUPPORT