Explorar o código

Added connection-specific conn_data pointer to struct mg_request_info

Sergey Lyubka %!s(int64=12) %!d(string=hai) anos
pai
achega
036b213b2b
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      mongoose.h

+ 1 - 0
mongoose.h

@@ -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 {