diff options
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r-- | src/include/microhttpd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 0a7e4711..46a82625 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h @@ -2310,6 +2310,7 @@ MHD_upgrade_action (struct MHD_UpgradeResponseHandle *urh, * @param connection original HTTP connection handle, * giving the function a last chance * to inspect the original HTTP request + * @param con_cls last value left in `con_cls` of the `MHD_AccessHandlerCallback` * @param extra_in if we happened to have read bytes after the * HTTP header already (because the client sent * more than the HTTP header of the request before @@ -2331,6 +2332,7 @@ MHD_upgrade_action (struct MHD_UpgradeResponseHandle *urh, typedef void (*MHD_UpgradeHandler)(void *cls, struct MHD_Connection *connection, + void *con_cls, const char *extra_in, size_t extra_in_size, MHD_socket sock, |