Explorar el Código

* Added Winsock (c)(tm)(r) compatibility

tags/v0.99.beta14
Jean-Yves Lamoureux jylam hace 18 años
padre
commit
0890243547
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. +11
    -0
      src/cacaserver.c

+ 11
- 0
src/cacaserver.c Ver fichero

@@ -121,6 +121,14 @@ int main(void)
struct server *server;
char *tmp;

#ifdef HAVE_WINDOWS_H
WORD winsockVersion;
WSADATA wsaData;
int nret;
winsockVersion = MAKEWORD(1, 1);

WSAStartup(winsockVersion, &wsaData);
#endif
server = malloc(sizeof(struct server));

server->input = malloc(12);
@@ -262,6 +270,9 @@ int main(void)

free(server);

#ifdef HAVE_WINDOWS_H
WSACleanup();
#endif
return 0;
}



Cargando…
Cancelar
Guardar