Commit 036b213b authored by Sergey Lyubka's avatar Sergey Lyubka

Added connection-specific conn_data pointer to struct mg_request_info

parent d864d724
...@@ -43,6 +43,7 @@ struct mg_request_info { ...@@ -43,6 +43,7 @@ struct mg_request_info {
int remote_port; // Client's port int remote_port; // Client's port
int is_ssl; // 1 if SSL-ed, 0 if not int is_ssl; // 1 if SSL-ed, 0 if not
void *user_data; // User data pointer passed to mg_start() void *user_data; // User data pointer passed to mg_start()
void *conn_data; // Connection-specific user data
int num_headers; // Number of HTTP headers int num_headers; // Number of HTTP headers
struct mg_header { struct mg_header {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment