Differences From Artifact [5b9875dd08]:
- File src/cgi.c — part of check-in [e63a9fd9d0] at 2007-09-25 21:21:35 on branch trunk — Fixed many uninitialized variable warnings and some potential bug found via -Wall -Werror on gcc. (user: jnc size: 36866) [more...]
To Artifact [3772dc1166]:
- File src/cgi.c — part of check-in [e7cf189265] at 2007-10-04 17:37:00 on branch trunk — Changes to cgi.c in check-in [e63a9fd9d0] broke the windows build because of undefined socklen_t. Added the appropriate include file (user: mjanssen size: 36900)
| ︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + | ** decode strings in HTML or HTTP. */ #include "config.h" #ifdef __MINGW32__ # include <windows.h> /* for Sleep once server works again */ # include <winsock2.h> /* socket operations */ # define sleep Sleep /* windows does not have sleep, but Sleep */ # include <ws2tcpip.h> #else # include <sys/socket.h> # include <netinet/in.h> # include <arpa/inet.h> # include <sys/times.h> # include <sys/time.h> # include <sys/wait.h> |
| ︙ |