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-26 22:53:33 +08:00
|
|
|
Initialise Mongoose manager. Side effect: ignores SIGPIPE signal.
|
|
|
|
`mgr->user_data` field will be initialised with a `user_data` parameter.
|
|
|
|
That is an arbitrary pointer, where the 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-26 22:53:33 +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.
|
|
|
|
|