25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
** Low-level sockets are abstracted out into this module because they
** are handled different on Unix and windows.
*/
#include "config.h"
#include "http_socket.h"
#if defined(_WIN32)
# if defined(__MINGW32__)
# include <ws2tcpip.h>
# endif
# include <windows.h>
#else
# include <netinet/in.h>
# include <arpa/inet.h>
# include <sys/socket.h>
# include <netdb.h>
#endif
#include <assert.h>
|
<
|
<
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
** Low-level sockets are abstracted out into this module because they
** are handled different on Unix and windows.
*/
#include "config.h"
#include "http_socket.h"
#if defined(_WIN32)
# include <winsock2.h>
# include <ws2tcpip.h>
#else
# include <netinet/in.h>
# include <arpa/inet.h>
# include <sys/socket.h>
# include <netdb.h>
#endif
#include <assert.h>
|