2013-08-16 18:18:16 +08:00
|
|
|
// Copyright (c) 2004-2013 Sergey Lyubka <valenok@gmail.com>
|
|
|
|
// Copyright (c) 2013 Cesanta Software Limited
|
|
|
|
// All rights reserved
|
2010-07-07 06:15:14 +08:00
|
|
|
//
|
2013-08-16 18:18:16 +08:00
|
|
|
// This library is dual-licensed: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
|
|
// published by the Free Software Foundation. For the terms of this
|
|
|
|
// license, see <http://www.gnu.org/licenses/>.
|
2010-07-07 06:15:14 +08:00
|
|
|
//
|
2013-08-16 18:18:16 +08:00
|
|
|
// You are free to use this library under the terms of the GNU General
|
|
|
|
// Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU General Public License for more details.
|
2010-07-07 06:15:14 +08:00
|
|
|
//
|
2013-08-16 18:18:16 +08:00
|
|
|
// Alternatively, you can license this library under a commercial
|
|
|
|
// license, as set out in <http://cesanta.com/products.html>.
|
2013-12-09 22:18:49 +08:00
|
|
|
//
|
|
|
|
// NOTE: Detailed API documentation is at http://cesanta.com/docs.html
|
2010-05-04 04:46:42 +08:00
|
|
|
|
|
|
|
#ifndef MONGOOSE_HEADER_INCLUDED
|
2010-07-07 06:15:14 +08:00
|
|
|
#define MONGOOSE_HEADER_INCLUDED
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
#define MONGOOSE_VERSION "5.0"
|
|
|
|
|
|
|
|
#include <stdio.h> // required for FILE
|
|
|
|
#include <stddef.h> // required for size_t
|
2011-05-02 16:09:58 +08:00
|
|
|
|
2010-05-04 04:46:42 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2010-07-07 06:15:14 +08:00
|
|
|
#endif // __cplusplus
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
// This structure contains information about HTTP request.
|
|
|
|
struct mg_connection {
|
2012-09-28 04:48:05 +08:00
|
|
|
const char *request_method; // "GET", "POST", etc
|
|
|
|
const char *uri; // URL-decoded URI
|
|
|
|
const char *http_version; // E.g. "1.0", "1.1"
|
|
|
|
const char *query_string; // URL part after '?', not including '?', or NULL
|
2013-12-09 22:18:49 +08:00
|
|
|
|
|
|
|
char remote_ip[48]; // Max IPv6 string length is 45 characters
|
2012-09-28 04:48:05 +08:00
|
|
|
int remote_port; // Client's port
|
2013-02-02 00:48:30 +08:00
|
|
|
|
|
|
|
int num_headers; // Number of HTTP headers
|
2010-07-07 06:15:14 +08:00
|
|
|
struct mg_header {
|
2012-09-28 04:48:05 +08:00
|
|
|
const char *name; // HTTP header name
|
|
|
|
const char *value; // HTTP header value
|
2013-12-09 22:18:49 +08:00
|
|
|
} http_headers[30];
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
char *content; // POST (or websocket message) data, or NULL
|
|
|
|
int content_len; // content length
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
int is_websocket; // Connection is a websocket connection
|
|
|
|
int status_code; // HTTP status code for HTTP error handler
|
|
|
|
unsigned char wsbits; // First byte of the websocket frame
|
|
|
|
void *server_param; // Parameter passed to mg_add_uri_handler()
|
|
|
|
void *connection_param; // Placeholder for connection-specific data
|
2013-07-12 19:25:25 +08:00
|
|
|
};
|
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
struct mg_server; // Opaque structure describing server instance
|
|
|
|
typedef int (*mg_handler_t)(struct mg_connection *);
|
|
|
|
|
|
|
|
// Server management functions
|
|
|
|
struct mg_server *mg_create_server(void *server_param);
|
|
|
|
void mg_destroy_server(struct mg_server **);
|
|
|
|
const char *mg_set_option(struct mg_server *, const char *opt, const char *val);
|
2013-12-22 04:52:54 +08:00
|
|
|
unsigned int mg_poll_server(struct mg_server *, int milliseconds);
|
2013-12-09 22:18:49 +08:00
|
|
|
void mg_add_uri_handler(struct mg_server *, const char *uri, mg_handler_t);
|
|
|
|
void mg_set_http_error_handler(struct mg_server *, mg_handler_t);
|
2013-10-31 07:02:15 +08:00
|
|
|
const char **mg_get_valid_option_names(void);
|
2013-12-09 22:18:49 +08:00
|
|
|
const char *mg_get_option(const struct mg_server *server, const char *name);
|
2013-12-22 04:52:54 +08:00
|
|
|
void mg_set_listening_socket(struct mg_server *, int sock);
|
|
|
|
int mg_get_listening_socket(struct mg_server *);
|
2014-01-04 08:51:07 +08:00
|
|
|
void mg_iterate_over_connections(struct mg_server *,
|
|
|
|
void (*func)(struct mg_connection *, void *),
|
|
|
|
void *param);
|
2013-12-09 22:18:49 +08:00
|
|
|
|
|
|
|
// Connection management functions
|
2013-10-31 07:02:15 +08:00
|
|
|
int mg_write(struct mg_connection *, const void *buf, int len);
|
2013-12-09 22:18:49 +08:00
|
|
|
int mg_websocket_write(struct mg_connection *, int opcode,
|
|
|
|
const char *data, size_t data_len);
|
2013-12-26 18:12:18 +08:00
|
|
|
int mg_printf(struct mg_connection *conn, const char *fmt, ...);
|
2013-07-12 19:25:25 +08:00
|
|
|
|
2010-05-04 04:46:42 +08:00
|
|
|
const char *mg_get_header(const struct mg_connection *, const char *name);
|
2013-12-09 22:18:49 +08:00
|
|
|
const char *mg_get_mime_type(const char *file_name);
|
|
|
|
int mg_get_var(const struct mg_connection *conn, const char *var_name,
|
|
|
|
char *buf, size_t buf_len);
|
|
|
|
int mg_parse_header(const char *hdr, const char *var_name, char *buf, size_t);
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2013-12-09 22:18:49 +08:00
|
|
|
// Utility functions
|
|
|
|
void *mg_start_thread(void *(*func)(void *), void *param);
|
2013-03-27 16:31:12 +08:00
|
|
|
char *mg_md5(char buf[33], ...);
|
2010-05-05 07:39:36 +08:00
|
|
|
|
2010-05-04 04:46:42 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2010-07-07 06:15:14 +08:00
|
|
|
#endif // __cplusplus
|
2010-05-04 04:46:42 +08:00
|
|
|
|
2010-07-07 06:15:14 +08:00
|
|
|
#endif // MONGOOSE_HEADER_INCLUDED
|