okey, thanks for help, but atm i don't know how to use non-blocking sockets
Sockets are set to block by default and have the function setBlocking() which allows you to toggle blocking.
sf::Socket socket;
socket.setBlocking(false);
Now instead of the socket waiting for when the action can and is performed, it will just return immediately thus preventing your thread from being halted. Check the detailed description of sf::Socket (http://"http://www.sfml-dev.org/documentation/2.1/classsf_1_1Socket.php") for a better explanation of blocking to non-blocking.