xref: /openbsd-src/regress/usr.sbin/relayd/args-http-mark.pl (revision 6d509cd08c4dcef5b2c563f3fb5198691abff771)
1use strict;
2use warnings;
3
4our %args = (
5    client => {
6	func => \&http_client,
7	path => "foobar?path",
8    },
9    relayd => {
10	protocol => [ "http",
11	    'match request path "/foobar" value "*" tag RING0',
12	    'block request',
13	    'pass request quick tagged RING0',
14	],
15	loggrep => { ", RING0,.*done" => 1 },
16    },
17    server => {
18	func => \&http_server,
19    },
20    len => 12,
21);
22
231;
24