Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
279c06c6
Commit
279c06c6
authored
Mar 03, 2014
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up cruft from mongoose.h
parent
570c8213
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
mongoose.h
mongoose.h
+1
-13
No files found.
mongoose.h
View file @
279c06c6
...
...
@@ -81,6 +81,7 @@ void mg_set_listening_socket(struct mg_server *, int sock);
int
mg_get_listening_socket
(
struct
mg_server
*
);
void
mg_iterate_over_connections
(
struct
mg_server
*
,
mg_handler_t
);
void
mg_wakeup_server
(
struct
mg_server
*
);
struct
mg_connection
*
mg_connect
(
struct
mg_server
*
,
const
char
*
,
int
,
int
);
// Connection management functions
void
mg_send_status
(
struct
mg_connection
*
,
int
status_code
);
...
...
@@ -110,19 +111,6 @@ void *mg_start_thread(void *(*func)(void *), void *param);
char
*
mg_md5
(
char
buf
[
33
],
...);
int
mg_authorize_digest
(
struct
mg_connection
*
c
,
FILE
*
fp
);
// Callback function return codes
enum
{
MG_REQUEST_NOT_PROCESSED
,
MG_REQUEST_PROCESSED
,
MG_REQUEST_CALL_AGAIN
};
enum
{
MG_AUTH_FAIL
,
MG_AUTH_OK
};
enum
{
MG_ERROR_NOT_PROCESSED
,
MG_ERROR_PROCESSED
};
enum
{
MG_CLIENT_CONTINUE
,
MG_CLIENT_CLOSE
};
// HTTP client events
enum
{
MG_CONNECT_SUCCESS
,
MG_CONNECT_FAILURE
,
MG_DOWNLOAD_SUCCESS
,
MG_DOWNLOAD_FAILURE
};
struct
mg_connection
*
mg_connect
(
struct
mg_server
*
,
const
char
*
,
int
,
int
);
#ifdef __cplusplus
}
#endif // __cplusplus
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment