non blocking tcp connect with epoll

Posted by doccarcass on Stack Overflow See other posts from Stack Overflow or by doccarcass
Published on 2010-05-20T15:04:34Z Indexed on 2010/05/21 1:20 UTC
Read the original article Hit count: 334

Filed under:
|
|

My linux application is performing non-blocking TCP connect syscall and then use epoll_wait to detect three way handshake completion. Sometimes epoll_wait returns with both POLLOUT & POLLERR revents set for the same socket descriptor. I would like to understand what's going on at TCP level. I'm not able to reproduce it on demand. My guess is that between two calls to epoll_wait inside my event loop we had a SYN+ACK/ACK/FIN sequence but again I'm not able to reproduce it. Any clue ?

Regards, Seb

© Stack Overflow or respective owner

Related posts about tcp

Related posts about linux