args-https-filter-persistent.pl revision 1.3
1# test persistent https connection with request filter
2
3use strict;
4use warnings;
5
6my @lengths = (251, 16384, 0, 1, 2, 3, 4, 5);
7our %args = (
8    client => {
9	func => \&http_client,
10	lengths => \@lengths,
11	loggrep => qr/Client missing http 2 response/,
12	ssl => 1,
13    },
14    relayd => {
15	protocol => [ "http",
16	    'block request path "/2"',
17	],
18	loggrep => [
19	    qr/ssl, ssl client/ => 1,
20	    qr/Forbidden/ => 1,
21	],
22	forwardssl => 1,
23	listenssl => 1,
24    },
25    server => {
26	func => \&http_server,
27	ssl => 1,
28    },
29    lengths => [251, 16384, 0, 1, 3, 4, 5],
30    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
31);
32
331;
34