1url 2 http://example.com/chunked.txt 3headers 4 Content-Type: text/plain 5content_cb 6 my @content = qq{abcdefghijklmnopqrstuvwxyz1234567890abcdef}; 7 sub { shift @content } 8---------- 9PUT /chunked.txt HTTP/1.1 10Host: example.com 11Connection: close 12User-Agent: HTTP-Tiny/VERSION 13Content-Type: text/plain 14Transfer-Encoding: chunked 15 162A 17abcdefghijklmnopqrstuvwxyz1234567890abcdef 180 19 20---------- 21HTTP/1.1 201 Created 22Date: Thu, 03 Feb 1994 00:00:00 GMT 23Location: http://example.com/chunked.txt 24Content-Length: 0 25 26