summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/relayd/args-timeput-http.pl
blob: cfe709ab9a3be5032115368b00784fda4275dd99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# test that 2 seconds timeout does not occur while client writes for 4 seconds

use strict;
use warnings;

our %args = (
    client => {
	func => \&http_client,
	len => 5,
	sleep => 1,
	method => "PUT",
	timefile => "",
    },
    relayd => {
	relay => [ "session timeout 2" ],
	loggrep => { qr/(buffer event|splice) timeout/ => 0 },
    },
    server => {
	func => \&http_server,
	method => "PUT",
    },
    len => 5,
);

1;