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

Merge pull request #116 from shivrai/feat/blocking-accept

Test for blocking accept
parents 21a5caa3 1a869a60
No related branches found
No related tags found
No related merge requests found
// Test for blocking accept
// Establish a connection
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
// Initiate a blocking system call
0.000...0.200 accept(3, ..., ...) = 4
0.100 < S 0:0(0) win 65535 <mss 1460,sackOK,nop,nop,nop,wscale 7>
0.100 > S. 0:0(0) ack 1 <...>
0.200 < . 1:1(0) ack 1 win 65535
// The connection gets accepted at this point
0.300 write(4, ..., 1460) = 1460
0.300 > P. 1:1461(1460) ack 1 <...>
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