mirror of
https://github.com/cesanta/mongoose.git
synced 2025-06-08 01:42:52 +08:00
Add names to mg_event_handler_t's args
PUBLISHED_FROM=3caea25dec11260561349fa096547bd62ecdb509
This commit is contained in:
parent
39a17f8a72
commit
0798b72470
@ -3,7 +3,7 @@ title: "mg_event_handler_t"
|
|||||||
decl_name: "mg_event_handler_t"
|
decl_name: "mg_event_handler_t"
|
||||||
symbol_kind: "typedef"
|
symbol_kind: "typedef"
|
||||||
signature: |
|
signature: |
|
||||||
typedef void (*mg_event_handler_t)(struct mg_connection *, int ev, void *);
|
typedef void (*mg_event_handler_t)(struct mg_connection *nc, int ev, void *ev_data);
|
||||||
---
|
---
|
||||||
|
|
||||||
Callback function (event handler) prototype. Must be defined by the user.
|
Callback function (event handler) prototype. Must be defined by the user.
|
||||||
|
@ -2749,7 +2749,7 @@ struct mg_connection;
|
|||||||
* Callback function (event handler) prototype. Must be defined by the user.
|
* Callback function (event handler) prototype. Must be defined by the user.
|
||||||
* Mongoose calls the event handler, passing the events defined below.
|
* Mongoose calls the event handler, passing the events defined below.
|
||||||
*/
|
*/
|
||||||
typedef void (*mg_event_handler_t)(struct mg_connection *, int ev, void *);
|
typedef void (*mg_event_handler_t)(struct mg_connection *nc, int ev, void *ev_data);
|
||||||
|
|
||||||
/* Events. Meaning of event parameter (evp) is given in the comment. */
|
/* Events. Meaning of event parameter (evp) is given in the comment. */
|
||||||
#define MG_EV_POLL 0 /* Sent to each connection on each mg_mgr_poll() call */
|
#define MG_EV_POLL 0 /* Sent to each connection on each mg_mgr_poll() call */
|
||||||
|
Loading…
Reference in New Issue
Block a user