From 7249b2bd5fba35d9325017bfe6378f32921819f8 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Tue, 13 Sep 2016 12:27:14 +0100 Subject: [PATCH] Update mg_mgr docstring PUBLISHED_FROM=da57dfe52e315dc1901d761289f0445be6e93cea --- docs/c-api/net.h/struct_mg_mgr.md | 2 +- mongoose.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/c-api/net.h/struct_mg_mgr.md b/docs/c-api/net.h/struct_mg_mgr.md index f510e1b0..5adfe6e8 100644 --- a/docs/c-api/net.h/struct_mg_mgr.md +++ b/docs/c-api/net.h/struct_mg_mgr.md @@ -7,7 +7,7 @@ signature: | struct mg_connection *active_connections; const char *hexdump_file; /* Debug hexdump file path */ #ifndef MG_DISABLE_SOCKETPAIR - sock_t ctl[2]; /* Socketpair for mg_wakeup() */ + sock_t ctl[2]; /* Socketpair for mg_broadcast() */ #endif void *user_data; /* User data */ void *mgr_data; /* Implementation-specific event manager's data. */ diff --git a/mongoose.h b/mongoose.h index d2fab8ff..304fa5d3 100644 --- a/mongoose.h +++ b/mongoose.h @@ -1199,7 +1199,7 @@ struct mg_mgr { struct mg_connection *active_connections; const char *hexdump_file; /* Debug hexdump file path */ #ifndef MG_DISABLE_SOCKETPAIR - sock_t ctl[2]; /* Socketpair for mg_wakeup() */ + sock_t ctl[2]; /* Socketpair for mg_broadcast() */ #endif void *user_data; /* User data */ void *mgr_data; /* Implementation-specific event manager's data. */