mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-29 06:08:59 +08:00
6a3d01ee6b
PUBLISHED_FROM=cf49d0d345e4a7607c535f9578b8ed4160f2fccd
513 B
513 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_mgr_init() | mg_mgr_init | func | 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.