Crash in client example without WSAStartup!
Brought to you by:
adedov
I can't understand what happend: incorrect building, linking or smth else, but simple example of XMLRPC server works correctly, but XMLRPC client crashs....
You have this init
#if defined(WIN32)
WORD wVersionRequested;
WSADATA wsaData;
wVersionRequested = MAKEWORD(2, 2);
WSAStartup(wVersionRequested, &wsaData);
#endif
in client_test, but not in example code of client..
Please, add this for future windows users ), or write comment...
Added it into wiki article: https://github.com/adedov/libiqxmlrpc/wiki/Windows-Notes
Thanks.