I am programming a small video server with non-blocking sockets and epoll. I am using a non-blocking connect and epoll_wait to detect when the socket is ready. At this point i check the socket state with getsockopt and if the return value is 0 I can send data. My problem is that this application works perfectly well on my archlinux system but when using on an ubuntu system epoll_wait returns with EPOLLERR and getsockopt still returns 0. Any clue ?
Regards Ben