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
31
32
33
34
|
# test https connection over http relay
# The client writes an incomplete header line and closes the connection.
# Check that the relay establishes and also closes the session.
use strict;
use warnings;
our %args = (
client => {
func => sub {
print "GET "; # missing new line
},
ssl => 1,
nocheck => 1,
},
relayd => {
protocol => [ "http",
"match request header log foo",
"match response header log bar",
],
forwardssl => 1,
listenssl => 1,
loggrep => {
qr/session 1 established/ => 1,
qr/session 1 .*, done/ => 1,
},
},
server => {
noserver => 1,
nocheck => 1,
},
);
1;
|