<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:10pt"><div style="" class="">Hello,<br style="" class=""><br style="" class="">I finally managed to run simple_example in windows. There is an missing initialization in code. The function getaddrinfo() in address.c at line 93 return a != 0 value. This is because winsock was not initialized first. Initialization is done with WSAStartup in nice_interfaces_get_WSA_socket()  ( in interfaces.c). But the nice_interfaces_get_WSA_socket()  is inside a #if 0 statement. I just add the following code at the beginning of main:<br style="" class=""><br style="" class="">    WORD wVersionRequested;<br style="" class="">    WSADATA wsaData;<br style="" class="">    int err;<br style="" class="">    wVersionRequested = MAKEWORD(2, 0);<br style=""
 class="">    err = WSAStartup(wVersionRequested, &wsaData);<br style="" class="">        if (err != 0) {<br style="" class="">            printf("\n\nError : Could not start the winsocket engine\n\n");<br style="" class="">     }<br style="" class=""><br style="" class="">Maybe this info could be helpful to somebody<br style="" class=""><br style="" class="">The hole project (without this fix) is uploaded here:<br style="" class="">https://drive.google.com/file/d/0B77rRvkLQgXuLTQ2SjR2bnI5WDg/edit?usp=sharing<br style="" class=""><br style="" class="">Andrei<br style="" class=""></div><div style="" class=""><br style="" class=""></div></div></body></html>