21
21
22
22
/*------------------------------------------------------------------
23
23
*
24
- * Module: sock .c
24
+ * Module: dwsock .c
25
25
*
26
26
* Purpose: Functions for TCP sockets.
27
27
*
66
66
#include <time.h>
67
67
68
68
#include "textcolor.h"
69
- #include "sock .h"
69
+ #include "dwsock .h"
70
70
71
71
static void shuffle (struct addrinfo * host [], int nhosts );
72
72
73
73
74
74
/*-------------------------------------------------------------------
75
75
*
76
- * Name: sock_init
76
+ * Name: dwsock_init
77
77
*
78
78
* Purpose: Preparation before using socket interface.
79
79
*
@@ -97,7 +97,7 @@ static void shuffle (struct addrinfo *host[], int nhosts);
97
97
*
98
98
*--------------------------------------------------------------------*/
99
99
100
- int sock_init (void )
100
+ int dwsock_init (void )
101
101
{
102
102
#if __WIN32__
103
103
WSADATA wsadata ;
@@ -119,7 +119,7 @@ int sock_init(void)
119
119
#endif
120
120
return (0 );
121
121
122
- } /* end sock_init */
122
+ } /* end dwsock_init */
123
123
124
124
125
125
@@ -141,7 +141,7 @@ int sock_init(void)
141
141
* debug - Print debugging information.
142
142
*
143
143
* Outputs: ipaddr_str - The IP address, in text form, is placed here in case
144
- * the caller wants it. Should be SOCK_IPADDR_LEN bytes.
144
+ * the caller wants it. Should be DWSOCK_IPADDR_LEN bytes.
145
145
*
146
146
* Returns: Socket Handle / file descriptor or -1 for error.
147
147
*
@@ -160,7 +160,7 @@ int sock_init(void)
160
160
*
161
161
*--------------------------------------------------------------------*/
162
162
163
- int sock_connect (char * hostname , char * port , char * description , int allow_ipv6 , int debug , char ipaddr_str [SOCK_IPADDR_LEN ])
163
+ int dwsock_connect (char * hostname , char * port , char * description , int allow_ipv6 , int debug , char ipaddr_str [DWSOCK_IPADDR_LEN ])
164
164
{
165
165
#define MAX_HOSTS 50
166
166
@@ -172,7 +172,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
172
172
int err ;
173
173
int server_sock = -1 ;
174
174
175
- strlcpy (ipaddr_str , "???" , SOCK_IPADDR_LEN );
175
+ strlcpy (ipaddr_str , "???" , DWSOCK_IPADDR_LEN );
176
176
memset (& hints , 0 , sizeof (hints ));
177
177
178
178
hints .ai_family = AF_UNSPEC ; /* Allow either IPv4 or IPv6. */
@@ -212,7 +212,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
212
212
213
213
if (debug ) {
214
214
text_color_set (DW_COLOR_DEBUG );
215
- sock_ia_to_text (ai -> ai_family , ai -> ai_addr , ipaddr_str , SOCK_IPADDR_LEN );
215
+ dwsock_ia_to_text (ai -> ai_family , ai -> ai_addr , ipaddr_str , DWSOCK_IPADDR_LEN );
216
216
dw_printf (" %s\n" , ipaddr_str );
217
217
}
218
218
@@ -226,7 +226,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
226
226
text_color_set (DW_COLOR_DEBUG );
227
227
dw_printf ("addresses for hostname:\n" );
228
228
for (n = 0 ; n < num_hosts ; n ++ ) {
229
- sock_ia_to_text (hosts [n ]-> ai_family , hosts [n ]-> ai_addr , ipaddr_str , SOCK_IPADDR_LEN );
229
+ dwsock_ia_to_text (hosts [n ]-> ai_family , hosts [n ]-> ai_addr , ipaddr_str , DWSOCK_IPADDR_LEN );
230
230
dw_printf (" %s\n" , ipaddr_str );
231
231
}
232
232
}
@@ -242,7 +242,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
242
242
#endif
243
243
ai = hosts [n ];
244
244
245
- sock_ia_to_text (ai -> ai_family , ai -> ai_addr , ipaddr_str , SOCK_IPADDR_LEN );
245
+ dwsock_ia_to_text (ai -> ai_family , ai -> ai_addr , ipaddr_str , DWSOCK_IPADDR_LEN );
246
246
is = socket (ai -> ai_family , ai -> ai_socktype , ai -> ai_protocol );
247
247
#if __WIN32__
248
248
if (is == INVALID_SOCKET ) {
@@ -313,13 +313,13 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
313
313
314
314
return (server_sock );
315
315
316
- } /* end sock_connect */
316
+ } /* end dwsock_connect */
317
317
318
318
319
319
320
320
/*-------------------------------------------------------------------
321
321
*
322
- * Name: sock_bind
322
+ * Name: dwsock_bind
323
323
*
324
324
* Purpose: We also have a bunch of duplicate code for the server side.
325
325
*
@@ -366,7 +366,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
366
366
367
367
/*-------------------------------------------------------------------
368
368
*
369
- * Name: sock_ia_to_text
369
+ * Name: dwsock_ia_to_text
370
370
*
371
371
* Purpose: Convert binary IP Address to text form.
372
372
*
@@ -392,7 +392,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
392
392
*
393
393
*--------------------------------------------------------------------*/
394
394
395
- char * sock_ia_to_text (int Family , void * pAddr , char * pStringBuf , size_t StringBufSize )
395
+ char * dwsock_ia_to_text (int Family , void * pAddr , char * pStringBuf , size_t StringBufSize )
396
396
{
397
397
struct sockaddr_in * sa4 ;
398
398
struct sockaddr_in6 * sa6 ;
@@ -433,6 +433,19 @@ char *sock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t Stri
433
433
}
434
434
return pStringBuf ;
435
435
436
- } /* end sock_ia_to_text */
436
+ } /* end dwsock_ia_to_text */
437
437
438
- /* end sock.c */
438
+
439
+ void dwsock_close (int fd )
440
+ {
441
+ #if __WIN32__
442
+ closesocket (fd );
443
+ #else
444
+ close (fd );
445
+ #endif
446
+ }
447
+
448
+
449
+
450
+
451
+ /* end dwsock.c */
0 commit comments