diff options
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r-- | src/microhttpd/internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h index 581f6864..56657e19 100644 --- a/src/microhttpd/internal.h +++ b/src/microhttpd/internal.h @@ -1576,6 +1576,13 @@ struct MHD_Connection bool suspended; /** + * Are we currently in the #MHD_AccessHandlerCallback + * for this connection (and thus eligible to receive + * calls to #MHD_queue_response()?). + */ + bool in_access_handler; + + /** * Is the connection wanting to resume? */ volatile bool resuming; |