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: cname1=cvalue01; 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: cname1=cvalue01 26 27---------- 28HTTP/1.1 200 OK 29Date: Sat, 02 Mar 2013 00:00:00 GMT 30Set-Cookie: cname2=cvalue02; domain=example.com; path=/ 31Content-Type: text/plain 32Content-Length: 44 33 34abcdefghijklmnopqrstuvwxyz1234567890abcdef 35---------- 36url 37 http://example.com/index.html 38---------- 39GET /index.html HTTP/1.1 40Host: example.com 41Connection: close 42User-Agent: HTTP-Tiny/VERSION 43Cookie: cname1=cvalue01; cname2=cvalue02 44 45---------- 46HTTP/1.1 200 OK 47Date: Sat, 02 Mar 2013 00:00:00 GMT 48Content-Type: text/plain 49Content-Length: 44 50 51abcdefghijklmnopqrstuvwxyz1234567890abcdef 52