diff --git a/reactos/apps/tests/oskittcp/tcptest.cpp b/reactos/apps/tests/oskittcp/tcptest.cpp index bdfaf8f92b1..d78d4a3c5f8 100644 --- a/reactos/apps/tests/oskittcp/tcptest.cpp +++ b/reactos/apps/tests/oskittcp/tcptest.cpp @@ -183,6 +183,9 @@ int main( int argc, char **argv ) { struct timeval tv; struct sockaddr_in addr_from = { AF_INET }, addr_to; std::list::iterator i; + WSADATA wsadata; + + WSAStartup( 0x101, &wsadata ); if( argc > 1 ) port = atoi(argv[1]);