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=/ 13Set-Cookie: cname2=cvalue02; domain=example.com; path=/ 14Content-Type: text/plain 15Content-Length: 44 16 17abcdefghijklmnopqrstuvwxyz1234567890abcdef 18---------- 19url 20 http://example.com/index.html 21---------- 22GET /index.html HTTP/1.1 23Host: example.com 24Connection: close 25User-Agent: HTTP-Tiny/VERSION 26Cookie: cname1=cvalue01; cname2=cvalue02 27 28---------- 29HTTP/1.1 200 OK 30Date: Sat, 02 Mar 2013 00:00:00 GMT 31Content-Type: text/plain 32Content-Length: 44 33 34abcdefghijklmnopqrstuvwxyz1234567890abcdef 35