xref: /openbsd-src/regress/usr.sbin/relayd/args-http-log.pl (revision 4c1e55dc91edd6e69ccc60ce855900fbc12cf34f)
1# test http connection over http relay
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&http_client,
9    },
10    relayd => {
11	protocol => [ "http",
12	    "request header log foo",
13	    "response header log bar",
14	],
15    },
16    server => {
17	func => \&http_server,
18    },
19    len => 251,
20    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
21);
22
231;
24