]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2368_Rowley/webserver/http-strings.c
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / ARM7_LPC2368_Rowley / webserver / http-strings.c
1 const char http_http[8] = \r
2 /* "http://" */\r
3 {0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, };\r
4 const char http_200[5] = \r
5 /* "200 " */\r
6 {0x32, 0x30, 0x30, 0x20, };\r
7 const char http_301[5] = \r
8 /* "301 " */\r
9 {0x33, 0x30, 0x31, 0x20, };\r
10 const char http_302[5] = \r
11 /* "302 " */\r
12 {0x33, 0x30, 0x32, 0x20, };\r
13 const char http_get[5] = \r
14 /* "GET " */\r
15 {0x47, 0x45, 0x54, 0x20, };\r
16 const char http_10[9] = \r
17 /* "HTTP/1.0" */\r
18 {0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, };\r
19 const char http_11[9] = \r
20 /* "HTTP/1.1" */\r
21 {0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x31, };\r
22 const char http_content_type[15] = \r
23 /* "content-type: " */\r
24 {0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, };\r
25 const char http_texthtml[10] = \r
26 /* "text/html" */\r
27 {0x74, 0x65, 0x78, 0x74, 0x2f, 0x68, 0x74, 0x6d, 0x6c, };\r
28 const char http_location[11] = \r
29 /* "location: " */\r
30 {0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, };\r
31 const char http_host[7] = \r
32 /* "host: " */\r
33 {0x68, 0x6f, 0x73, 0x74, 0x3a, 0x20, };\r
34 const char http_crnl[3] = \r
35 /* "\r\n" */\r
36 {0xd, 0xa, };\r
37 const char http_index_html[12] = \r
38 /* "/index.html" */\r
39 {0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e, 0x68, 0x74, 0x6d, 0x6c, };\r
40 const char http_404_html[10] = \r
41 /* "/404.html" */\r
42 {0x2f, 0x34, 0x30, 0x34, 0x2e, 0x68, 0x74, 0x6d, 0x6c, };\r
43 const char http_referer[9] = \r
44 /* "Referer:" */\r
45 {0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x3a, };\r
46 const char http_header_200[84] = \r
47 /* "HTTP/1.0 200 OK\r\nServer: uIP/1.0 http://www.sics.se/~adam/uip/\r\nConnection: close\r\n" */\r
48 {0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x32, 0x30, 0x30, 0x20, 0x4f, 0x4b, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x75, 0x49, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x73, 0x65, 0x2f, 0x7e, 0x61, 0x64, 0x61, 0x6d, 0x2f, 0x75, 0x69, 0x70, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };\r
49 const char http_header_404[91] = \r
50 /* "HTTP/1.0 404 Not found\r\nServer: uIP/1.0 http://www.sics.se/~adam/uip/\r\nConnection: close\r\n" */\r
51 {0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x34, 0x30, 0x34, 0x20, 0x4e, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x75, 0x49, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x73, 0x65, 0x2f, 0x7e, 0x61, 0x64, 0x61, 0x6d, 0x2f, 0x75, 0x69, 0x70, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };\r
52 const char http_content_type_plain[29] = \r
53 /* "Content-type: text/plain\r\n\r\n" */\r
54 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0xd, 0xa, 0xd, 0xa, };\r
55 const char http_content_type_html[28] = \r
56 /* "Content-type: text/html\r\n\r\n" */\r
57 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x68, 0x74, 0x6d, 0x6c, 0xd, 0xa, 0xd, 0xa, };\r
58 const char http_content_type_css [27] = \r
59 /* "Content-type: text/css\r\n\r\n" */\r
60 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x63, 0x73, 0x73, 0xd, 0xa, 0xd, 0xa, };\r
61 const char http_content_type_text[28] = \r
62 /* "Content-type: text/text\r\n\r\n" */\r
63 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x74, 0x65, 0x78, 0x74, 0xd, 0xa, 0xd, 0xa, };\r
64 const char http_content_type_png [28] = \r
65 /* "Content-type: image/png\r\n\r\n" */\r
66 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x70, 0x6e, 0x67, 0xd, 0xa, 0xd, 0xa, };\r
67 const char http_content_type_gif [28] = \r
68 /* "Content-type: image/gif\r\n\r\n" */\r
69 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x67, 0x69, 0x66, 0xd, 0xa, 0xd, 0xa, };\r
70 const char http_content_type_jpg [29] = \r
71 /* "Content-type: image/jpeg\r\n\r\n" */\r
72 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x6a, 0x70, 0x65, 0x67, 0xd, 0xa, 0xd, 0xa, };\r
73 const char http_content_type_binary[43] = \r
74 /* "Content-type: application/octet-stream\r\n\r\n" */\r
75 {0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6f, 0x63, 0x74, 0x65, 0x74, 0x2d, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0xd, 0xa, 0xd, 0xa, };\r
76 const char http_html[6] = \r
77 /* ".html" */\r
78 {0x2e, 0x68, 0x74, 0x6d, 0x6c, };\r
79 const char http_shtml[7] = \r
80 /* ".shtml" */\r
81 {0x2e, 0x73, 0x68, 0x74, 0x6d, 0x6c, };\r
82 const char http_htm[5] = \r
83 /* ".htm" */\r
84 {0x2e, 0x68, 0x74, 0x6d, };\r
85 const char http_css[5] = \r
86 /* ".css" */\r
87 {0x2e, 0x63, 0x73, 0x73, };\r
88 const char http_png[5] = \r
89 /* ".png" */\r
90 {0x2e, 0x70, 0x6e, 0x67, };\r
91 const char http_gif[5] = \r
92 /* ".gif" */\r
93 {0x2e, 0x67, 0x69, 0x66, };\r
94 const char http_jpg[5] = \r
95 /* ".jpg" */\r
96 {0x2e, 0x6a, 0x70, 0x67, };\r
97 const char http_text[5] = \r
98 /* ".txt" */\r
99 {0x2e, 0x74, 0x78, 0x74, };\r
100 const char http_txt[5] = \r
101 /* ".txt" */\r
102 {0x2e, 0x74, 0x78, 0x74, };\r