sp0raw подкинул прикол:
http://msdn.microsoft.com/en-us/library/ms740148(VS.85).aspx
//——————————————— // Set up the RecvAddr structure with the IP address of // the receiver (in this example case "123.456.789.1") // and the specified port number. RecvAddr.sin_family = AF_INET; RecvAddr.sin_port = htons(Port); RecvAddr.sin_addr.s_addr = inet_addr("123.456.789.1"); Как говорится, комментарии излишни 🙂
[…]