2016-05-12 04:36:12 +08:00
|
|
|
---
|
|
|
|
title: "mg_mgr_init()"
|
|
|
|
decl_name: "mg_mgr_init"
|
|
|
|
symbol_kind: "func"
|
|
|
|
signature: |
|
|
|
|
void mg_mgr_init(struct mg_mgr *mgr, void *user_data);
|
|
|
|
---
|
|
|
|
|
2016-07-22 20:37:46 +08:00
|
|
|
Initialize Mongoose manager. Side effect: ignores SIGPIPE signal.
|
|
|
|
`mgr->user_data` field will be initialized with `user_data` parameter.
|
|
|
|
That is an arbitrary pointer, where user code can associate some data
|
2016-05-12 04:36:12 +08:00
|
|
|
with the particular Mongoose manager. For example, a C++ wrapper class
|
2016-07-22 20:35:22 +08:00
|
|
|
could be written, in which case `user_data` can hold a pointer to the
|
2016-05-12 04:36:12 +08:00
|
|
|
class instance.
|
|
|
|
|