summaryrefslogtreecommitdiffhomepage
path: root/http.h
blob: fd75db9da8e0aa7f9204cc6dfcf8ffb376f2502d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef HTTP_H
#define HTTP_H

enum status
{
	STATUS_OK = 200,
	STATUS_BAD_REQUEST = 400,
	STATUS_METHOD_NOT_ALLOWED = 405,
	STATUS_REQUEST_TIMEOUT = 408,
	STATUS_INTERNAL_SERVER_ERROR = 500,
	STATUS_NOT_IMPLEMENTED = 501,
	STATUS_VERSION_NOT_SUPPORTED = 505,
};

extern const char * method_str[];
extern const char * status_str[];

int respond_only_status(int, enum status);
int respond_with_body(int, enum status, const char *);
int collect_request(int, char **);

#endif // HTTP_H