source: uKadecot/trunk/uip/apps/webserver/http-strings@ 101

Last change on this file since 101 was 101, checked in by coas-nagasima, 9 years ago

TOPPERS/uKadecotのソースコードを追加

File size: 1.7 KB
Line 
1http_http "http://"
2http_200 "200 "
3http_301 "301 "
4http_302 "302 "
5http_get "GET "
6http_10 "HTTP/1.0"
7http_11 "HTTP/1.1"
8http_content_type "content-type: "
9http_texthtml "text/html"
10http_location "location: "
11http_host "host: "
12http_crnl "\r\n"
13http_index_html "/index.html"
14http_404_html "/404.html"
15http_websocket "WebSocket"
16http_referer "Referer: "
17http_upgrade "Upgrade: "
18http_connection "Connection: "
19http_sec_websocket_accept "Sec-WebSocket-Accept: "
20http_sec_websocket_protocol "Sec-WebSocket-Protocol: "
21http_header_101 "HTTP/1.1 101 Switching Protocols\r\n"
22http_header_200 "HTTP/1.1 200 OK\r\nServer: uIP/1.0 http://www.toppers.jp/\r\nConnection: close\r\n"
23http_header_404 "HTTP/1.1 404 Not found\r\nServer: uIP/1.0 http://www.toppers.jp/\r\nConnection: close\r\n"
24http_content_encoding_gzip "Content-Encoding: gzip\r\n"
25http_websocket_guid "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
26http_content_type_plain "Content-type: text/plain\r\n\r\n"
27http_content_type_html "Content-type: text/html\r\n\r\n"
28http_content_type_css "Content-type: text/css\r\n\r\n"
29http_content_type_js "Content-type: text/javascript\r\n\r\n"
30http_content_type_json "Content-type: application/json\r\n\r\n"
31http_content_type_text "Content-type: text/text\r\n\r\n"
32http_content_type_png "Content-type: image/png\r\n\r\n"
33http_content_type_gif "Content-type: image/gif\r\n\r\n"
34http_content_type_jpg "Content-type: image/jpeg\r\n\r\n"
35http_content_type_svg "Content-type: image/svg+xml\r\n\r\n"
36http_content_type_binary "Content-type: application/octet-stream\r\n\r\n"
37http_html ".html"
38http_shtml ".shtml"
39http_htm ".htm"
40http_css ".css"
41http_js ".js"
42http_json ".json"
43http_png ".png"
44http_gif ".gif"
45http_jpg ".jpg"
46http_svg ".svg"
47http_text ".txt"
48http_txt ".txt"
49
Note: See TracBrowser for help on using the repository browser.