X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/6f9272bdabcda81425ec1aaecf26a160535d4749..623bacefa16295fa34407543514013abae7c01d9:/net/http/fsdata.c diff --git a/net/http/fsdata.c b/net/http/fsdata.c index 7195a70..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[] = - "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)}};