uIP 1.0 based webserver for LPC1114 + ENC28J60

Dependencies:   mbed TMP102

Committer:
ban4jp
Date:
Sat Jun 14 16:02:21 2014 +0000
Revision:
0:685224d2f66d
Child:
2:4da9ed411bdc
initial commit.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ban4jp 0:685224d2f66d 1 extern const char http_http[8];
ban4jp 0:685224d2f66d 2 extern const char http_200[5];
ban4jp 0:685224d2f66d 3 extern const char http_301[5];
ban4jp 0:685224d2f66d 4 extern const char http_302[5];
ban4jp 0:685224d2f66d 5 extern const char http_get[5];
ban4jp 0:685224d2f66d 6 extern const char http_10[9];
ban4jp 0:685224d2f66d 7 extern const char http_11[9];
ban4jp 0:685224d2f66d 8 extern const char http_content_type[15];
ban4jp 0:685224d2f66d 9 extern const char http_texthtml[10];
ban4jp 0:685224d2f66d 10 extern const char http_location[11];
ban4jp 0:685224d2f66d 11 extern const char http_host[7];
ban4jp 0:685224d2f66d 12 extern const char http_crnl[3];
ban4jp 0:685224d2f66d 13 extern const char http_index_html[12];
ban4jp 0:685224d2f66d 14 extern const char http_404_html[10];
ban4jp 0:685224d2f66d 15 extern const char http_referer[9];
ban4jp 0:685224d2f66d 16 extern const char http_header_200[84];
ban4jp 0:685224d2f66d 17 extern const char http_header_404[91];
ban4jp 0:685224d2f66d 18 extern const char http_content_type_plain[29];
ban4jp 0:685224d2f66d 19 extern const char http_content_type_html[28];
ban4jp 0:685224d2f66d 20 extern const char http_content_type_css [27];
ban4jp 0:685224d2f66d 21 extern const char http_content_type_text[28];
ban4jp 0:685224d2f66d 22 extern const char http_content_type_png [28];
ban4jp 0:685224d2f66d 23 extern const char http_content_type_gif [28];
ban4jp 0:685224d2f66d 24 extern const char http_content_type_jpg [29];
ban4jp 0:685224d2f66d 25 extern const char http_content_type_binary[43];
ban4jp 0:685224d2f66d 26 extern const char http_html[6];
ban4jp 0:685224d2f66d 27 extern const char http_shtml[7];
ban4jp 0:685224d2f66d 28 extern const char http_htm[5];
ban4jp 0:685224d2f66d 29 extern const char http_css[5];
ban4jp 0:685224d2f66d 30 extern const char http_png[5];
ban4jp 0:685224d2f66d 31 extern const char http_gif[5];
ban4jp 0:685224d2f66d 32 extern const char http_jpg[5];
ban4jp 0:685224d2f66d 33 extern const char http_text[5];
ban4jp 0:685224d2f66d 34 extern const char http_txt[5];