From 0798b72470d77a440b95a9d24cb2e1567eab02c7 Mon Sep 17 00:00:00 2001 From: Dmitry Frank <dmitry.frank@cesanta.com> Date: Tue, 1 Nov 2016 23:08:42 +0000 Subject: [PATCH] Add names to mg_event_handler_t's args PUBLISHED_FROM=3caea25dec11260561349fa096547bd62ecdb509 --- docs/c-api/net.h/mg_event_handler_t.md | 2 +- mongoose.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/c-api/net.h/mg_event_handler_t.md b/docs/c-api/net.h/mg_event_handler_t.md index f436d667d..2360b79e3 100644 --- a/docs/c-api/net.h/mg_event_handler_t.md +++ b/docs/c-api/net.h/mg_event_handler_t.md @@ -3,7 +3,7 @@ title: "mg_event_handler_t" decl_name: "mg_event_handler_t" symbol_kind: "typedef" 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. diff --git a/mongoose.h b/mongoose.h index af56f1355..780fa0849 100644 --- a/mongoose.h +++ b/mongoose.h @@ -2749,7 +2749,7 @@ struct mg_connection; * Callback function (event handler) prototype. Must be defined by the user. * 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. */ #define MG_EV_POLL 0 /* Sent to each connection on each mg_mgr_poll() call */ -- GitLab