-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathechttp.h
88 lines (63 loc) · 2.92 KB
/
echttp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* echttp - Embedded HTTP server.
*
* A minimal HTTP server library designed for simplicity and embedding in
* applications.
*
* The server may listen to multiple simultaneous requests (i.e. TCP
* connections), but each HTTP request, once received in full, is blocking
* (i.e. no other HTTP request is processed until the callback returns).
*/
#ifndef ECHTTP_H__INCLUDED
#define ECHTTP_H__INCLUDED
/*
* The open function understands the following options:
* -http-service=N: service name or port number to be used by the server.
* -http-debug: enable debug mode (verbose traces).
*/
const char *echttp_help (int level);
const char *echttp_option_match (const char *reference,
const char *input, const char **value);
int echttp_option_present (const char *reference, const char *input);
void echttp_default (const char *arg);
int echttp_open (int argc, const char **argv);
int echttp_port (int ip);
int echttp_dynamic_port (void);
void echttp_close (void);
typedef const char *echttp_callback (const char *method, const char *uri,
const char *data, int length);
int echttp_route_uri (const char *uri, echttp_callback *call);
int echttp_route_match (const char *root, echttp_callback *call);
int echttp_route_find (const char *uri);
typedef void echttp_protect_callback (const char *method, const char *uri);
int echttp_protect (int route, echttp_protect_callback *call);
int echttp_asynchronous_route (int route, echttp_callback *callback);
const char *echttp_attribute_get (const char *name);
const char *echttp_parameter_get (const char *name);
void echttp_parameter_join (char *text, int size);
void echttp_attribute_set (const char *name, const char *value);
void echttp_error (int code, const char *message);
void echttp_redirect (const char *url);
void echttp_permanent_redirect (const char *url);
const char *echttp_reason (void);
void echttp_content_type_set (const char *value);
void echttp_content_type_html (void);
void echttp_content_type_json (void);
void echttp_content_type_css (void);
void echttp_transfer (int fd, int size);
int echttp_connect (const char *host, const char *service);
typedef void echttp_listener (int fd, int mode);
void echttp_listen (int fd, int mode, echttp_listener *listener, int premium);
void echttp_forget (int fd);
void echttp_background (echttp_listener *listener);
int echttp_isdebug (void);
int echttp_islocal (void);
void echttp_loop (void);
// Web client functions:
void echttp_escape (const char *s, char *d, int size);
typedef void echttp_response (void *origin, int status, char *data, int length);
const char *echttp_client (const char *method, const char *url);
void echttp_asynchronous (echttp_response *asynchronous);
void echttp_submit (const char *data, int length,
echttp_response *response, void *origin);
int echttp_redirected (const char *method);
#endif