struct_mg_mgr.md 510 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
---
title: "struct mg_mgr"
decl_name: "struct mg_mgr"
symbol_kind: "struct"
signature: |
  struct mg_mgr {
    struct mg_connection *active_connections;
    const char *hexdump_file; /* Debug hexdump file path */
  #ifndef MG_DISABLE_SOCKETPAIR
    sock_t ctl[2]; /* Socketpair for mg_wakeup() */
  #endif
    void *user_data; /* User data */
    void *mgr_data;  /* Implementation-specific event manager's data. */
  #ifdef MG_ENABLE_JAVASCRIPT
    struct v7 *v7;
  #endif
  };
---

Mongoose event manager.