Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix harmless compiler warning. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7014c2ddf1bd5c71025e8eee3b883fa7 |
User & Date: | mistachkin 2018-08-07 23:01:34.509 |
Context
2018-08-07
| ||
23:03 | Make it possible to debug child processes on Windows. ... (check-in: e285341f user: mistachkin tags: trunk) | |
23:01 | Fix harmless compiler warning. ... (check-in: 7014c2dd user: mistachkin tags: trunk) | |
21:45 | In the backoffice module, use GETPID macro consistently, fix compiler warning with MinGW, and add an assert(). ... (check-in: af87fa5b user: mistachkin tags: trunk) | |
Changes
Changes to src/http_socket.c.
︙ | ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | ** at a time. State information is stored in static variables. The identity ** of the server is held in global variables that are set by url_parse(). ** ** Low-level sockets are abstracted out into this module because they ** are handled different on Unix and windows. */ #if defined(_WIN32) # define _WIN32_WINNT 0x501 #endif #ifndef __EXTENSIONS__ # define __EXTENSIONS__ 1 /* IPv6 won't compile on Solaris without this */ #endif #include "config.h" #include "http_socket.h" | > > > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ** at a time. State information is stored in static variables. The identity ** of the server is held in global variables that are set by url_parse(). ** ** Low-level sockets are abstracted out into this module because they ** are handled different on Unix and windows. */ #if defined(_WIN32) # if defined(_WIN32_WINNT) # undef _WIN32_WINNT # endif # define _WIN32_WINNT 0x501 #endif #ifndef __EXTENSIONS__ # define __EXTENSIONS__ 1 /* IPv6 won't compile on Solaris without this */ #endif #include "config.h" #include "http_socket.h" |
︙ | ︙ |