Home
last modified time | relevance | path

Searched refs:chunked (Results 1 – 18 of 18) sorted by relevance

/openbsd/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus/
H A Dput-03.txt2 http://example.com/chunked.txt
9 PUT /chunked.txt HTTP/1.1
14 Transfer-Encoding: chunked
23 Location: http://example.com/chunked.txt
H A Dput-05.txt2 http://example.com/chunked.txt
11 PUT /chunked.txt HTTP/1.1
16 Transfer-Encoding: chunked
25 Location: http://example.com/chunked.txt
H A Dget-18.txt2 http://example.com/chunked.html
6 transfer-encoding: chunked
16 GET /chunked.html HTTP/1.1
23 Transfer-Encoding: chunked
H A Dget-05.txt2 http://example.com/chunked.html
6 GET /chunked.html HTTP/1.1
15 Transfer-Encoding: chunked
H A Dget-11.txt2 http://example.com/chunked.html
6 GET /chunked.html HTTP/1.1
16 Transfer-Encoding: chunked
H A Dget-13.txt2 http://example.com/chunked.html
6 GET /chunked.html HTTP/1.1
15 Transfer-Encoding: chunked
H A Dget-19.txt2 http://example.com/chunked.html
6 GET /chunked.html HTTP/1.1
16 Transfer-Encoding: chunked
H A Dget-10.txt2 http://example.com/chunked.html
6 GET /chunked.html HTTP/1.1
H A Dput-08.txt13 Transfer-Encoding: chunked
/openbsd/usr.sbin/pkg_add/OpenBSD/PackageRepository/
H A DHTTP.pm118 $h->{chunked} = 1;
186 if ($h->{chunked}) {
197 if ($h->{chunked}) {
/openbsd/usr.sbin/httpd/
H A Dserver_fcgi.c393 clt->clt_fcgi.chunked = 1; in server_fcgi()
396 clt->clt_fcgi.chunked = 0; in server_fcgi()
507 if (desc->http_method != HTTP_METHOD_HEAD && clt->clt_fcgi.chunked && in server_fcgi_error()
669 clt->clt_fcgi.chunked = 0; in server_fcgi_header()
683 if (clt->clt_fcgi.chunked) { in server_fcgi_header()
687 clt->clt_fcgi.chunked = 0; in server_fcgi_header()
798 if (clt->clt_fcgi.chunked) { in server_fcgi_writechunk()
H A Dhttpd.h291 int chunked; member
/openbsd/regress/usr.sbin/httpd/tests/
H A Dfuncs.pl190 my $chunked = 0;
217 $chunked = 1;
230 } elsif ($chunked) {
/openbsd/usr.sbin/rpki-client/
H A Dhttp.c138 int chunked; member
804 if (!conn->chunked) { in http_inflate_advance()
817 if (conn->chunked && conn->iosz == 0) in http_inflate_advance()
908 assert(conn->chunked == 0); in http_done()
1432 conn->chunked = 1; in http_parse_header()
1617 if (conn->chunked) in http_read()
1646 if (conn->chunked) in http_read()
1700 conn->chunked = 0; in http_read()
1897 if (!conn->chunked && conn->iosz == 0) in data_write()
1902 if (conn->chunked && conn->iosz == 0) in data_write()
/openbsd/regress/usr.sbin/relayd/
H A Dfuncs.pl250 my $chunked = 0;
275 $chunked = 1;
280 if ($chunked) {
/openbsd/usr.bin/ftp/
H A Dfetch.c345 int chunked = 0; in url_get() local
978 chunked = 1; in url_get()
994 if (chunked) in url_get()
1056 if (chunked) { in url_get()
/openbsd/usr.sbin/unbound/smallapp/
H A Dunbound-anchor.c872 process_one_header(char* buf, size_t* clen, int* chunked) in process_one_header() argument
882 if(!*chunked) in process_one_header()
886 *chunked = 1; in process_one_header()
943 int chunked = 0; in read_http_headers() local
948 if(!process_one_header(buf, clen, &chunked)) in read_http_headers()
/openbsd/gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP/
H A DTiny.pm1423 my $chunked = grep { /chunked/i } ( ref $te eq 'ARRAY' ? @$te : $te ) ;
1424 return $chunked