X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4d8868425004956946425f8f68a0b350c3919402..623bacefa16295fa34407543514013abae7c01d9:/net/http/fsdata.c?ds=sidebyside diff --git a/net/http/fsdata.c b/net/http/fsdata.c index 7e70023..e42d5ad 100644 --- a/net/http/fsdata.c +++ b/net/http/fsdata.c @@ -1,12 +1,15 @@ -static const unsigned char data_404_html[] = +static const char data_404_html[] = "404 Not Found" "

404 Not Found

This is probably not the machine you're looking for...

" ""; -static const unsigned char data_index_html[] = +static const char data_index_html[] = "NetWatch" - "

NetWatch

" + "" + "
" + ""; const struct fsdata_file file_404_html[] = {{NULL, "/404.html", data_404_html, sizeof(data_404_html)}}; const struct fsdata_file file_index_html[] = {{file_404_html, "/index.html", data_index_html, sizeof(data_index_html)}};