1url 2 http://example.com/index.html 3---------- 4GET /index.html HTTP/1.1 5Host: example.com 6Connection: close 7User-Agent: HTTP-Tiny/VERSION 8 9---------- 10HTTP/1.1 200 OK 11Date: Sat, 02 Mar 2013 00:00:00 GMT 12Set-Cookie: cname=cvalue; domain=example.com; path=/ 13Content-Type: text/plain 14Content-Length: 44 15 16abcdefghijklmnopqrstuvwxyz1234567890abcdef 17---------- 18url 19 http://example.com/index.html 20---------- 21GET /index.html HTTP/1.1 22Host: example.com 23Connection: close 24User-Agent: HTTP-Tiny/VERSION 25Cookie: cname=cvalue 26 27---------- 28HTTP/1.1 200 OK 29Date: Sat, 02 Mar 2013 00:00:00 GMT 30Set-Cookie: cname=cvalue; domain=example.com; path=/ 31Content-Type: text/plain 32Content-Length: 44 33 34abcdefghijklmnopqrstuvwxyz1234567890abcdef 35