blob: b39e271394ac08929c8ff3e347ae5a82ab8d2e6f (
plain)
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
|
#ifndef _H_HTTP
#define _H_HTTP
#define CFWS_MAXURI 128
enum http_req_method {
HTTP_METHOD_GET
};
enum http_res_code {
HTTP_RESPONSE_OK = 200,
HTTP_RESPONSE_NOTFOUND = 404
};
struct http_request {
int method;
char *uri;
};
struct http_request http_parse_request(const char *);
void http_free_request(struct http_request *);
void http_build_response(char **, enum http_res_code, const char *);
#endif
|