xref: /openbsd-src/regress/usr.sbin/relayd/args-http-filter.pl (revision e49fb92248b7fee55235de814b44c079d098005a)
1# test http connection with request filter, triggers lateconnect
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&http_client,
9	len => 1,
10    },
11    relayd => {
12	protocol => [ "http",
13	    'match request path "/2"',
14	],
15	loggrep => qr/done/,
16    },
17    server => {
18	func => \&http_server,
19    },
20    len => 1,
21    md5 => "68b329da9893e34099c7d8ad5cb9c940",
22);
23
241;
25