summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/relayd/args-http.pl
blob: 180fe00d13811ecddaef35c59b1226a30e5b64cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# test http connection over http relay

use strict;
use warnings;

our %args = (
    client => {
	func => \&http_client,
    },
    relayd => {
	protocol => [ "http" ],
    },
    server => {
	func => \&http_server,
    },
    len => 251,
    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
);

1;