Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Committer:
Michael J. Spencer
Date:
Fri Feb 28 18:52:52 2014 -0800
Revision:
2:1df0b61d3b5a
Update to latest Smoothie.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Michael J. Spencer 2:1df0b61d3b5a 1 extern const char http_http[8];
Michael J. Spencer 2:1df0b61d3b5a 2 extern const char http_200[5];
Michael J. Spencer 2:1df0b61d3b5a 3 extern const char http_301[5];
Michael J. Spencer 2:1df0b61d3b5a 4 extern const char http_302[5];
Michael J. Spencer 2:1df0b61d3b5a 5 extern const char http_get[5];
Michael J. Spencer 2:1df0b61d3b5a 6 extern const char http_post[6];
Michael J. Spencer 2:1df0b61d3b5a 7 extern const char http_10[9];
Michael J. Spencer 2:1df0b61d3b5a 8 extern const char http_11[9];
Michael J. Spencer 2:1df0b61d3b5a 9 extern const char http_content_type[15];
Michael J. Spencer 2:1df0b61d3b5a 10 extern const char http_content_length[17];
Michael J. Spencer 2:1df0b61d3b5a 11 extern const char http_cache_control[16];
Michael J. Spencer 2:1df0b61d3b5a 12 extern const char http_no_cache[9];
Michael J. Spencer 2:1df0b61d3b5a 13 extern const char http_texthtml[10];
Michael J. Spencer 2:1df0b61d3b5a 14 extern const char http_location[11];
Michael J. Spencer 2:1df0b61d3b5a 15 extern const char http_host[7];
Michael J. Spencer 2:1df0b61d3b5a 16 extern const char http_crnl[3];
Michael J. Spencer 2:1df0b61d3b5a 17 extern const char http_index_html[12];
Michael J. Spencer 2:1df0b61d3b5a 18 extern const char http_404_html[10];
Michael J. Spencer 2:1df0b61d3b5a 19 extern const char http_referer[9];
Michael J. Spencer 2:1df0b61d3b5a 20 extern const char http_header_200[54];
Michael J. Spencer 2:1df0b61d3b5a 21 extern const char http_header_304[152];
Michael J. Spencer 2:1df0b61d3b5a 22 extern const char http_header_404[61];
Michael J. Spencer 2:1df0b61d3b5a 23 extern const char http_header_503[58];
Michael J. Spencer 2:1df0b61d3b5a 24 extern const char http_content_type_plain[29];
Michael J. Spencer 2:1df0b61d3b5a 25 extern const char http_content_type_html[28];
Michael J. Spencer 2:1df0b61d3b5a 26 extern const char http_content_type_css [27];
Michael J. Spencer 2:1df0b61d3b5a 27 extern const char http_content_type_text[28];
Michael J. Spencer 2:1df0b61d3b5a 28 extern const char http_content_type_png [28];
Michael J. Spencer 2:1df0b61d3b5a 29 extern const char http_content_type_gif [28];
Michael J. Spencer 2:1df0b61d3b5a 30 extern const char http_content_type_jpg [29];
Michael J. Spencer 2:1df0b61d3b5a 31 extern const char http_content_type_binary[43];
Michael J. Spencer 2:1df0b61d3b5a 32 extern const char http_html[6];
Michael J. Spencer 2:1df0b61d3b5a 33 extern const char http_shtml[7];
Michael J. Spencer 2:1df0b61d3b5a 34 extern const char http_htm[5];
Michael J. Spencer 2:1df0b61d3b5a 35 extern const char http_css[5];
Michael J. Spencer 2:1df0b61d3b5a 36 extern const char http_png[5];
Michael J. Spencer 2:1df0b61d3b5a 37 extern const char http_gif[5];
Michael J. Spencer 2:1df0b61d3b5a 38 extern const char http_jpg[5];
Michael J. Spencer 2:1df0b61d3b5a 39 extern const char http_text[5];
Michael J. Spencer 2:1df0b61d3b5a 40 extern const char http_txt[5];