mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 18:09:15 +08:00
16 lines
513 B
Markdown
16 lines
513 B
Markdown
|
---
|
||
|
title: "mg_mgr_init()"
|
||
|
decl_name: "mg_mgr_init"
|
||
|
symbol_kind: "func"
|
||
|
signature: |
|
||
|
void mg_mgr_init(struct mg_mgr *mgr, void *user_data);
|
||
|
---
|
||
|
|
||
|
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
|
||
|
with the particular Mongoose manager. For example, a C++ wrapper class
|
||
|
could be written, in which case `user_data` can hold a pointer to the
|
||
|
class instance.
|
||
|
|