Fork of Smoothie to port to mbed non-LPC targets.
Fork of Smoothie by
libs/Network/uip/webserver/http-strings@2:1df0b61d3b5a, 2014-02-28 (annotated)
- 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?
User | Revision | Line number | New contents of line |
---|---|---|---|
Michael J. Spencer |
2:1df0b61d3b5a | 1 | http_http "http://" |
Michael J. Spencer |
2:1df0b61d3b5a | 2 | http_200 "200 " |
Michael J. Spencer |
2:1df0b61d3b5a | 3 | http_301 "301 " |
Michael J. Spencer |
2:1df0b61d3b5a | 4 | http_302 "302 " |
Michael J. Spencer |
2:1df0b61d3b5a | 5 | http_get "GET " |
Michael J. Spencer |
2:1df0b61d3b5a | 6 | http_post "POST " |
Michael J. Spencer |
2:1df0b61d3b5a | 7 | http_10 "HTTP/1.0" |
Michael J. Spencer |
2:1df0b61d3b5a | 8 | http_11 "HTTP/1.1" |
Michael J. Spencer |
2:1df0b61d3b5a | 9 | http_content_type "content-type: " |
Michael J. Spencer |
2:1df0b61d3b5a | 10 | http_content_length "Content-Length: " |
Michael J. Spencer |
2:1df0b61d3b5a | 11 | http_cache_control "Cache-Control: " |
Michael J. Spencer |
2:1df0b61d3b5a | 12 | http_no_cache "no-cache" |
Michael J. Spencer |
2:1df0b61d3b5a | 13 | http_texthtml "text/html" |
Michael J. Spencer |
2:1df0b61d3b5a | 14 | http_location "location: " |
Michael J. Spencer |
2:1df0b61d3b5a | 15 | http_host "host: " |
Michael J. Spencer |
2:1df0b61d3b5a | 16 | http_crnl "\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 17 | http_index_html "/index.html" |
Michael J. Spencer |
2:1df0b61d3b5a | 18 | http_404_html "/404.html" |
Michael J. Spencer |
2:1df0b61d3b5a | 19 | http_referer "Referer:" |
Michael J. Spencer |
2:1df0b61d3b5a | 20 | http_header_200 "HTTP/1.0 200 OK\r\nServer: uIP/1.0\r\nConnection: close\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 21 | http_header_304 "HTTP/1.0 304 Not Modified\r\nServer: uIP/1.0\r\nConnection: close\r\nExpires: Thu, 31 Dec 2037 23:55:55 GMT\r\nCache-Control: max-age=315360000\r\nX-Cache: HIT\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 22 | http_header_404 "HTTP/1.0 404 Not found\r\nServer: uIP/1.0\r\nConnection: close\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 23 | http_header_503 "HTTP/1.0 503 Failed\r\nServer: uIP/1.0\r\nConnection: close\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 24 | http_content_type_plain "Content-type: text/plain\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 25 | http_content_type_html "Content-type: text/html\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 26 | http_content_type_css "Content-type: text/css\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 27 | http_content_type_text "Content-type: text/text\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 28 | http_content_type_png "Content-type: image/png\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 29 | http_content_type_gif "Content-type: image/gif\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 30 | http_content_type_jpg "Content-type: image/jpeg\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 31 | http_content_type_binary "Content-type: application/octet-stream\r\n\r\n" |
Michael J. Spencer |
2:1df0b61d3b5a | 32 | http_html ".html" |
Michael J. Spencer |
2:1df0b61d3b5a | 33 | http_shtml ".shtml" |
Michael J. Spencer |
2:1df0b61d3b5a | 34 | http_htm ".htm" |
Michael J. Spencer |
2:1df0b61d3b5a | 35 | http_css ".css" |
Michael J. Spencer |
2:1df0b61d3b5a | 36 | http_png ".png" |
Michael J. Spencer |
2:1df0b61d3b5a | 37 | http_gif ".gif" |
Michael J. Spencer |
2:1df0b61d3b5a | 38 | http_jpg ".jpg" |
Michael J. Spencer |
2:1df0b61d3b5a | 39 | http_text ".txt" |
Michael J. Spencer |
2:1df0b61d3b5a | 40 | http_txt ".txt" |
Michael J. Spencer |
2:1df0b61d3b5a | 41 |