aboutsummaryrefslogtreecommitdiffstats
path: root/test/packetdrill/tests/tldk/keep_alive/keep-alive-after-accept-tldk.pkt
blob: 09ff2cbdc858da293fc4eef5bd638d340ee3c5c6 (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
// Test set keepalive after accept

// Establish a connection.
0   socket(..., SOCK_STREAM, IPPROTO_TCP) = 3
+0  setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0

+0  bind(3, ..., ...) = 0
+0  listen(3, 1) = 0

+0  < S 0:0(0) win 32792 <mss 1000,sackOK,nop,nop,nop,wscale 7>
+0  > S. 0:0(0) ack 1 <...>

+.1 < . 1:1(0) ack 1 win 32792
+0  accept(3, ..., ...) = 4

// enable keepalive and set args
+0  setsockopt(4, SOL_SOCKET, SO_KEEPALIVE, [1], 4) = 0
// extra ack, it's not needed, fix it later
+0 ~ +100 > . 1:1(0) ack 1

+0  setsockopt(4, IPPROTO_TCP, TCP_KEEPIDLE, [5], 4) = 0
// extra ack, it's not needed, fix it later
+0 ~ +100 > . 1:1(0) ack 1

+0  setsockopt(4, IPPROTO_TCP, TCP_KEEPINTVL, [2], 4) = 0
// extra ack, it's not needed, fix it later
+0 ~ +100 > . 1:1(0) ack 1

+0  setsockopt(4, IPPROTO_TCP, TCP_KEEPCNT, [2], 4) = 0

// first keep-alive pkt, idle = 5
+4 ~ +6 > . 0:0(0) ack 1

// second keep-alive pkt, interval = 2
+1 ~ +3 > . 0:0(0) ack 1

// get response, idle = 5
+0 < . 1:1(0) ack 1 win 32792

// first keep-alive pkt again, idle = 5
+4 ~ +6 > . 0:0(0) ack 1

// second keep-alive pkt, interval = 2
+1 ~ +3 > . 0:0(0) ack 1

// get no response, send rst
+1 ~ +3 > R. 1:1(0) ack 1

+1 read(4, ..., 10) = -1 ETIMEDOUT (Connection timed out)
+0 close(4) = 0