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
31f0409b
Commit
31f0409b
authored
Dec 05, 2013
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CGI endpoint
parent
ebf9ee08
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
286 additions
and
136 deletions
+286
-136
core.c
build/src/core.c
+280
-125
core.h
build/src/core.h
+6
-11
No files found.
build/src/core.c
View file @
31f0409b
This diff is collapsed.
Click to expand it.
build/src/core.h
View file @
31f0409b
...
@@ -34,19 +34,20 @@ struct mg_connection {
...
@@ -34,19 +34,20 @@ struct mg_connection {
const
char
*
http_version
;
// E.g. "1.0", "1.1"
const
char
*
http_version
;
// E.g. "1.0", "1.1"
const
char
*
query_string
;
// URL part after '?', not including '?', or NULL
const
char
*
query_string
;
// URL part after '?', not including '?', or NULL
long
remote_ip
;
// Client's IP addres
s
char
remote_ip
[
48
];
// Max IPv6 string length is 45 character
s
int
remote_port
;
// Client's port
int
remote_port
;
// Client's port
int
num_headers
;
// Number of HTTP headers
int
num_headers
;
// Number of HTTP headers
struct
mg_header
{
struct
mg_header
{
const
char
*
name
;
// HTTP header name
const
char
*
name
;
// HTTP header name
const
char
*
value
;
// HTTP header value
const
char
*
value
;
// HTTP header value
}
http_headers
[
64
];
// Maximum 64 headers
}
http_headers
[
30
];
char
*
content
;
// POST (or websocket message) data, or NULL
char
*
content
;
// POST (or websocket message) data, or NULL
int
content_len
;
// content length
int
content_len
;
// content length
int
is_websocket
;
// Connection is a websocket connection
int
is_websocket
;
// Connection is a websocket connection
unsigned
char
wsbits
;
// First byte of the websocket frame
void
*
server_param
;
// Parameter passed to mg_add_uri_handler()
void
*
server_param
;
// Parameter passed to mg_add_uri_handler()
void
*
connection_param
;
// Placeholder for connection-specific data
void
*
connection_param
;
// Placeholder for connection-specific data
};
};
...
@@ -68,29 +69,23 @@ void mg_set_log_handler(struct mg_server*, int (*)(struct mg_connection*, int));
...
@@ -68,29 +69,23 @@ void mg_set_log_handler(struct mg_server*, int (*)(struct mg_connection*, int));
const
char
**
mg_get_valid_option_names
(
void
);
const
char
**
mg_get_valid_option_names
(
void
);
const
char
*
mg_get_option
(
const
struct
mg_server
*
server
,
const
char
*
name
);
const
char
*
mg_get_option
(
const
struct
mg_server
*
server
,
const
char
*
name
);
// Websocket functions
//void mg_websocket_handshake(struct mg_connection *);
//int mg_websocket_read(struct mg_connection *, int *bits, char **data);
//int mg_websocket_write(struct mg_connection* conn, int opcode,
// const char *data, size_t data_len);
// Connection management functions
// Connection management functions
int
mg_write
(
struct
mg_connection
*
,
const
void
*
buf
,
int
len
);
int
mg_write
(
struct
mg_connection
*
,
const
void
*
buf
,
int
len
);
const
char
*
mg_get_header
(
const
struct
mg_connection
*
,
const
char
*
name
);
const
char
*
mg_get_mime_type
(
const
char
*
file_name
);
#if 0
#if 0
int mg_printf(struct mg_connection *, const char *fmt, ...);
int mg_printf(struct mg_connection *, const char *fmt, ...);
void mg_send_file(struct mg_connection *, const char *path);
void mg_send_file(struct mg_connection *, const char *path);
int mg_read(struct mg_connection *, void *buf, int len);
int mg_read(struct mg_connection *, void *buf, int len);
const char *mg_get_header(const struct mg_connection *, const char *name);
int mg_get_var(const char *data, size_t data_len,
int mg_get_var(const char *data, size_t data_len,
const char *var_name, char *dst, size_t dst_len);
const char *var_name, char *dst, size_t dst_len);
int mg_get_cookie(const char *cookie, const char *var_name,
int mg_get_cookie(const char *cookie, const char *var_name,
char *buf, size_t buf_len);
char *buf, size_t buf_len);
const char *mg_get_mime_type(const char *file_name);
#endif
// Utility functions
// Utility functions
int
mg_start_thread
(
void
*
(
*
func
)(
void
*
),
void
*
param
);
int
mg_start_thread
(
void
*
(
*
func
)(
void
*
),
void
*
param
);
#endif
#ifdef __cplusplus
#ifdef __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