]> Joshua Wise's Git repositories - netwatch.git/blob - net/http/fsdata.c
7e700232df9feefd68158a4941bcf31d294e1864
[netwatch.git] / net / http / fsdata.c
1 static const unsigned char data_404_html[] =
2   "<html><head><title>404 Not Found</title></head>"
3   "<body><h1>404 Not Found</h1><p>This is probably not the machine you're looking for...</p></body>"
4   "</html>";
5
6 static const unsigned char data_index_html[] =
7   "<html><head><title>NetWatch</title></head>"
8   "<body><h1>NetWatch</h1><iframe src=\"registers.html\" height=100 width=600 /></body>"
9   "</html>";
10
11 const struct fsdata_file file_404_html[] = {{NULL, "/404.html", data_404_html, sizeof(data_404_html)}};
12 const struct fsdata_file file_index_html[] = {{file_404_html, "/index.html", data_index_html, sizeof(data_index_html)}};
13
14 #define FS_ROOT file_index_html
This page took 0.016015 seconds and 2 git commands to generate.