diff options
author | Marvin Borner | 2020-11-22 19:22:31 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-22 19:22:31 +0100 |
commit | d82b18c90710baf16239257272a740488fddf11c (patch) | |
tree | 9a59f9c4eb16a5d5050d430f1946d9997ae5e6db /apps | |
parent | 608fcc4075c1f28207aa177ec2d9408cc3e5e0da (diff) |
Added file-based HTTP server
And fixed/added some other things
Diffstat (limited to 'apps')
-rw-r--r-- | apps/server.c | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/apps/server.c b/apps/server.c index 5c94a88..fe2c17c 100644 --- a/apps/server.c +++ b/apps/server.c @@ -7,7 +7,9 @@ #include <str.h> #define PORT 8000 -#define FILE "/res/index.html" +#define FILE "/res/www/index.html" +#define PATH "/res/www" +#define ERROR "/res/www/404.html" int main() { @@ -18,11 +20,25 @@ int main() assert(socket); socket->src_port = PORT; socket->state = S_CONNECTED; + char buf[4096] = { 0 }; net_receive(socket, buf, 4096); + + char path[128] = { 0 }; + strcat(path, PATH); + http_query_path(buf, path); + if (strlen(path) == strlen(PATH) + 1) + strcat(path, "index.html"); + memset(buf, 0, 4096); - int l = http_response(HTTP_200, stat(FILE), read(FILE), buf); - net_send(socket, buf, l); + + u32 len = 0; + if ((len = stat(path))) + len = http_response(HTTP_200, len, read(path), buf); + else + len = http_response(HTTP_404, stat(ERROR), read(ERROR), buf); + + net_send(socket, buf, len); net_close(socket); } |