Skip to content
Snippets Groups Projects
Commit 5d86cddd authored by Michael Tüxen's avatar Michael Tüxen Committed by GitHub
Browse files

Merge pull request #107 from shivrai/feat/listen-incoming-no-tcp-flags

Test for behavior when sending a packet with no TCP flag set
parents e0290e36 ae8ff772
No related branches found
No related tags found
No related merge requests found
// Test behavior when a listener gets an incoming packet from
// new sender on a non-established connection that
// doesn't have any of the TCP flags set.
// Listener should not send any response.
// Checking if we can establish a connection with the
// system after a connection reset.
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
// An incoming TCP segment with no TCP flags set.
0.100 < - 0:0(0) win 65535 <mss 1460,sackOK,nop,nop,nop,wscale 7>
// FreeBSD ignores the packet and sends nothing.
// 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