You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
270 B
14 lines
270 B
5 months ago
|
main() {
|
||
|
write(1, "HTTP", 4);
|
||
|
write(1, "/1.0", 4);
|
||
|
write(1, " 200", 4);
|
||
|
write(1, " OK\r\n", 5);
|
||
|
write(1, "TOTO: 1\r\n", 9);
|
||
|
write(1, "Hdr2: 2\r\n", 9);
|
||
|
write(1, "Hdr3:", 5);
|
||
|
write(1, " 2\r\n", 4);
|
||
|
write(1, "\r\n\r\n", 4);
|
||
|
write(1, "DATA\r\n", 6);
|
||
|
}
|
||
|
|