X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4d8868425004956946425f8f68a0b350c3919402..923ea2c2cd9df7f02ddcfd8c543f63b76be44660:/net/http/fs.c diff --git a/net/http/fs.c b/net/http/fs.c index 9e6358d..54c5bd9 100644 --- a/net/http/fs.c +++ b/net/http/fs.c @@ -33,10 +33,11 @@ #include "fs.h" #include "fsdata.h" #include "fsdata.c" +#include /*-----------------------------------------------------------------------------------*/ -void fill_regs(struct fs_file *file) +void handle_regs(struct fs_file *file) { static unsigned char buf[2048]; @@ -63,7 +64,14 @@ void fill_regs(struct fs_file *file) file->data = buf; - file->len = strlen(buf); + file->len = strlen(buf)-1; +} + +void handle_reboot(struct fs_file *file) +{ + outb(0xCF9, 0x4); + file->data = "So long!"; + file->len = 8; } @@ -76,7 +84,12 @@ fs_open(const char *name, struct fs_file *file) /* /registers.html is CGI */ if (!strcmp(name, "/registers.html")) { - fill_regs(file); + handle_regs(file); + return 1; + } + if (!strcmp(name, "/reboot")) + { + handle_reboot(file); return 1; } @@ -85,7 +98,7 @@ fs_open(const char *name, struct fs_file *file) f = f->next) { if (!strcmp(name, (const char*)f->name)) { file->data = f->data; - file->len = f->len; + file->len = f->len-1; return 1; } }