소스 검색

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

tags/v0.99.beta14
Jean-Yves Lamoureux jylam 18 년 전
부모
커밋
0890243547
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      src/cacaserver.c

+ 11
- 0
src/cacaserver.c 파일 보기

@@ -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;
}



불러오는 중...
취소
저장