summaryrefslogtreecommitdiff
path: root/test/scripts/4058-pipe-conn-tfo/4058
blob: 5f0257810c288a99d3e9b6da4970a3aa351c07c6 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Early-pipelining, with TFO
#
#
# Packet delays so we can see TFO operational in packet captures
# Wipe any stored TFO cookie, to start from known state.
# Disable TFO blackhole-detection as we seem to be running afoul of that
sudo perl
system ("tc qdisc add dev lo root netem delay 50ms");
system ("ip tcp_metrics delete 127.0.0.1");
system ("[ -e /proc/sys/net/ipv4/tcp_fastopen_blackhole_timeout_sec ] && echo 0 > /proc/sys/net/ipv4/tcp_fastopen_blackhole_timeout_sec");
****
#
#
exim -bd -DSERVER=server -oX PORT_D
****
#
# No early-pipe cache yet.  Run one through to prime it;
# this should not use early-pipe despite both the client & server being enabled.
# Should also prime the TFO cookie cache.
exim nocache@test.ex
Subject: tfo test

Testing
****
exim -q
****
exim -DNOTDAEMON -DSERVER=server -q
****
#
#
#
# Having primed the cache, this one should use it.
exim hascache@test.ex
Subject: tfo test 2

Testing
****
exim -q
****
exim -DNOTDAEMON -DSERVER=server -q
****
#
#
killdaemon
#
# Again, with CHUNKING
sudo rm DIR/spool/db/misc
exim -bd -DSERVER=server -DOPT=* -oX PORT_D
****
#
exim nocache@test.ex
Subject: tfo test 3

Testing
****
exim -q
****
exim -DNOTDAEMON -DSERVER=server -q
****
exim chunking@test.ex
Subject: tfo test 4

Testing
****
exim -q
****
exim -DNOTDAEMON -DSERVER=server -q
****
#
#
killdaemon
#
sudo perl
system ("tc qdisc delete dev lo root");
system ("[ -e /proc/sys/net/ipv4/tcp_fastopen_blackhole_timeout_sec ] && echo 3600 > /proc/sys/net/ipv4/tcp_fastopen_blackhole_timeout_sec");
****
#
no_msglog_check