12 lines
424 B
C
12 lines
424 B
C
#include "http.h"
|
|
|
|
const char http_404[] = "HTTP/1.1 404 Not Found\n"
|
|
"Connection: close\n"
|
|
"Content-Length: 0\n\n";
|
|
const size_t http_404_len = sizeof(http_404) - 1;
|
|
|
|
const char http_500[] = "HTTP/1.1 500 Internal Server Error\n"
|
|
"Connection: close\n"
|
|
"Content-Length: 0\n\n";
|
|
const size_t http_500_len = sizeof(http_500) - 1;
|