diff options
Diffstat (limited to 'win32/net.c')
-rw-r--r-- | win32/net.c | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/win32/net.c b/win32/net.c new file mode 100644 index 000000000..2341119b0 --- /dev/null +++ b/win32/net.c | |||
@@ -0,0 +1,101 @@ | |||
1 | #include "libbb.h" | ||
2 | |||
3 | int inet_aton(const char *cp, struct in_addr *inp) | ||
4 | { | ||
5 | unsigned long val = inet_addr(cp); | ||
6 | |||
7 | if (val == INADDR_NONE) | ||
8 | return 0; | ||
9 | inp->S_un.S_addr = val; | ||
10 | return 1; | ||
11 | } | ||
12 | |||
13 | void init_winsock(void) | ||
14 | { | ||
15 | WSADATA wsa; | ||
16 | if (WSAStartup(MAKEWORD(2,2), &wsa)) | ||
17 | bb_error_msg_and_die("unable to initialize winsock subsystem, error %d", | ||
18 | WSAGetLastError()); | ||
19 | atexit((void(*)(void)) WSACleanup); /* may conflict with other atexit? */ | ||
20 | } | ||
21 | |||
22 | int mingw_socket(int domain, int type, int protocol) | ||
23 | { | ||
24 | int sockfd; | ||
25 | SOCKET s = WSASocket(domain, type, protocol, NULL, 0, 0); | ||
26 | if (s == INVALID_SOCKET) { | ||
27 | /* | ||
28 | * WSAGetLastError() values are regular BSD error codes | ||
29 | * biased by WSABASEERR. | ||
30 | * However, strerror() does not know about networking | ||
31 | * specific errors, which are values beginning at 38 or so. | ||
32 | * Therefore, we choose to leave the biased error code | ||
33 | * in errno so that _if_ someone looks up the code somewhere, | ||
34 | * then it is at least the number that are usually listed. | ||
35 | */ | ||
36 | errno = WSAGetLastError(); | ||
37 | return -1; | ||
38 | } | ||
39 | /* convert into a file descriptor */ | ||
40 | if ((sockfd = _open_osfhandle((intptr_t)s, O_RDWR|O_BINARY)) < 0) { | ||
41 | closesocket(s); | ||
42 | bb_error_msg("unable to make a socket file descriptor: %s", | ||
43 | strerror(errno)); | ||
44 | return -1; | ||
45 | } | ||
46 | return sockfd; | ||
47 | } | ||
48 | |||
49 | #undef connect | ||
50 | int mingw_connect(int sockfd, const struct sockaddr *sa, size_t sz) | ||
51 | { | ||
52 | SOCKET s = (SOCKET)_get_osfhandle(sockfd); | ||
53 | return connect(s, sa, sz); | ||
54 | } | ||
55 | |||
56 | #undef bind | ||
57 | int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz) | ||
58 | { | ||
59 | SOCKET s = (SOCKET)_get_osfhandle(sockfd); | ||
60 | return bind(s, sa, sz); | ||
61 | } | ||
62 | |||
63 | #undef setsockopt | ||
64 | int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen) | ||
65 | { | ||
66 | SOCKET s = (SOCKET)_get_osfhandle(sockfd); | ||
67 | return setsockopt(s, lvl, optname, (const char*)optval, optlen); | ||
68 | } | ||
69 | |||
70 | #undef shutdown | ||
71 | int mingw_shutdown(int sockfd, int how) | ||
72 | { | ||
73 | SOCKET s = (SOCKET)_get_osfhandle(sockfd); | ||
74 | return shutdown(s, how); | ||
75 | } | ||
76 | |||
77 | #undef listen | ||
78 | int mingw_listen(int sockfd, int backlog) | ||
79 | { | ||
80 | SOCKET s = (SOCKET)_get_osfhandle(sockfd); | ||
81 | return listen(s, backlog); | ||
82 | } | ||
83 | |||
84 | #undef accept | ||
85 | int mingw_accept(int sockfd1, struct sockaddr *sa, socklen_t *sz) | ||
86 | { | ||
87 | int sockfd2; | ||
88 | |||
89 | SOCKET s1 = (SOCKET)_get_osfhandle(sockfd1); | ||
90 | SOCKET s2 = accept(s1, sa, sz); | ||
91 | |||
92 | /* convert into a file descriptor */ | ||
93 | if ((sockfd2 = _open_osfhandle((intptr_t)s2, O_RDWR|O_BINARY)) < 0) { | ||
94 | int err = errno; | ||
95 | closesocket(s2); | ||
96 | bb_error_msg("unable to make a socket file descriptor: %s", | ||
97 | strerror(err)); | ||
98 | return -1; | ||
99 | } | ||
100 | return sockfd2; | ||
101 | } | ||