mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 01:29:00 +08:00
37e4f51668
PUBLISHED_FROM=81b6289a4b54043df557142f0de8cc66bc5190d4
24 lines
537 B
Markdown
24 lines
537 B
Markdown
---
|
|
title: "struct mg_mgr"
|
|
decl_name: "struct mg_mgr"
|
|
symbol_kind: "struct"
|
|
signature: |
|
|
struct mg_mgr {
|
|
struct mg_connection *active_connections;
|
|
#if MG_ENABLE_HEXDUMP
|
|
const char *hexdump_file; /* Debug hexdump file path */
|
|
#endif
|
|
#if MG_ENABLE_BROADCAST
|
|
sock_t ctl[2]; /* Socketpair for mg_broadcast() */
|
|
#endif
|
|
void *user_data; /* User data */
|
|
void *mgr_data; /* Implementation-specific event manager's data. */
|
|
#if MG_ENABLE_JAVASCRIPT
|
|
struct v7 *v7;
|
|
#endif
|
|
};
|
|
---
|
|
|
|
Mongoose event manager.
|
|
|