Skip to content
Snippets Groups Projects
Commit 26419d5e authored by Shivansh Rai's avatar Shivansh Rai
Browse files

Test for behavior when sending a packet with both SYN and RST bits set

parent 00035bb2
No related branches found
No related tags found
No related merge requests found
// Test behavior when a listener gets an incoming packet that has
// the SYN and RST bits set.
0.000 socket(..., SOCK_STREAM, IPPROTO_TCP) = 3
0.000 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
0.000 bind(3, ..., ...) = 0
0.000 listen(3, 1) = 0
0.100 < SR 0:0(0) win 65535 <mss 1460,sackOK,nop,nop,nop,wscale 7>
// The TCP stack should not respond to incoming RSTs, or else
// we could get infinite RST ping-pong storms.
// Now make sure that when a valid SYN arrives shortly thereafter
// (with the same address 4-tuple) we can still successfully establish
// a connection.
0.200 < S 0:0(0) win 65535 <mss 1460,sackOK,nop,nop,nop,wscale 7>
0.200 > S. 0:0(0) ack 1 <...>
0.300 < . 1:1(0) ack 1 win 65535
0.300 accept(3, ..., ...) = 4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment