mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-16 02:19:18 +08:00
fffb54e2c6
PUBLISHED_FROM=46496c2d5340a0bbe4fe1c6c9ff187bc65d2d35f
25 lines
539 B
Markdown
25 lines
539 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 */
|
|
int num_ifaces;
|
|
struct mg_iface **ifaces; /* network interfaces */
|
|
#if MG_ENABLE_JAVASCRIPT
|
|
struct v7 *v7;
|
|
#endif
|
|
};
|
|
---
|
|
|
|
Mongoose event manager.
|
|
|