summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/relayd/args-timeput-https.pl
blob: bdc406bebfd73caf29b82a46835bfb69884621b5 (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
26
27
28
29
30
# 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 => "",
	ssl => 1,
	loggrep => 'Issuer.*/OU=relayd/',
    },
    relayd => {
	relay => [ "session timeout 2" ],
	loggrep => { qr/buffer event timeout/ => 0 },
	forwardssl => 1,
	listenssl => 1,
    },
    server => {
	func => \&http_server,
	method => "PUT",
	ssl => 1,
    },
    len => 5,
);

1;