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