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

Test for blocking read

parent f8da1dfa
No related branches found
No related tags found
No related merge requests found
// Test for blocking read
// 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
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
0.200 accept(3, ..., ...) = 4
// We initiate a blocking read system call
0.200...0.300 read(4, ..., 2000) = 2000
0.300 < P. 1:2001(2000) ack 1 win 65535
0.300 > . 1:1(0) ack 2001
0.400...0.500 read(4, ..., 1000) = 1000
0.500 < P. 2001:3001(1000) ack 1 win 65535
// TODO: Find out why timing has to be relaxed by 100 ms in this case
0.600~0.610 > . 1:1(0) ack 3001 <...>
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