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