blob: bd0f4a5b5224b37b6a5eafed6a92f01e1c54492b (
plain) (
blame)
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
|
#include <stdio.h>
#include <string.h>
void send_header(char key[], char val[]) {
fputs(key, stdout);
fputs(": ", stdout);
fputs(val, stdout);
puts("\r");
}
void terminate_headers(void) {
puts("\r");
}
char *http_status_line(int status) {
switch(status) {
case 200:
return "200 OK";
case 400:
return "400 Bad Request";
case 401:
return "401 Unauthorized";
case 403:
return "403 Forbidden";
case 404:
return "404 Not Found";
default:
// default to 500
return "500 Internal Server Error";
}
}
|