From 50f8e8891be67fe65582541c702056a8397cc374 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Wed, 18 Sep 2013 09:44:00 +0100 Subject: [PATCH] Removed references to usermanual.md --- mongoose.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mongoose.h b/mongoose.h index 6a57bbcf..0adf51fb 100644 --- a/mongoose.h +++ b/mongoose.h @@ -51,8 +51,7 @@ struct mg_request_info { // This structure needs to be passed to mg_start(), to let mongoose know -// which callbacks to invoke. For detailed description, see -// https://github.com/cesanta/mongoose/blob/master/docs/UserManual.md +// which callbacks to invoke. struct mg_callbacks { // Called when mongoose has received new HTTP request. // If callback returns non-zero, @@ -157,9 +156,6 @@ struct mg_callbacks { // }; // struct mg_context *ctx = mg_start(&my_func, NULL, options); // -// Refer to https://github.com/cesanta/mongoose/blob/master/docs/UserManual.md -// for the list of valid option and their possible values. -// // Return: // web server context, or NULL on error. struct mg_context *mg_start(const struct mg_callbacks *callbacks,