Skip to content

Commit ab40b11

Browse files
committed
Rename sock.c to dwsock.c to avoid confusion.
1 parent ecf5fd1 commit ab40b11

File tree

4 files changed

+55
-40
lines changed

4 files changed

+55
-40
lines changed

sock.c dwsock.c

+30-17
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/*------------------------------------------------------------------
2323
*
24-
* Module: sock.c
24+
* Module: dwsock.c
2525
*
2626
* Purpose: Functions for TCP sockets.
2727
*
@@ -66,14 +66,14 @@
6666
#include <time.h>
6767

6868
#include "textcolor.h"
69-
#include "sock.h"
69+
#include "dwsock.h"
7070

7171
static void shuffle (struct addrinfo *host[], int nhosts);
7272

7373

7474
/*-------------------------------------------------------------------
7575
*
76-
* Name: sock_init
76+
* Name: dwsock_init
7777
*
7878
* Purpose: Preparation before using socket interface.
7979
*
@@ -97,7 +97,7 @@ static void shuffle (struct addrinfo *host[], int nhosts);
9797
*
9898
*--------------------------------------------------------------------*/
9999

100-
int sock_init(void)
100+
int dwsock_init(void)
101101
{
102102
#if __WIN32__
103103
WSADATA wsadata;
@@ -119,7 +119,7 @@ int sock_init(void)
119119
#endif
120120
return (0);
121121

122-
} /* end sock_init */
122+
} /* end dwsock_init */
123123

124124

125125

@@ -141,7 +141,7 @@ int sock_init(void)
141141
* debug - Print debugging information.
142142
*
143143
* 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.
145145
*
146146
* Returns: Socket Handle / file descriptor or -1 for error.
147147
*
@@ -160,7 +160,7 @@ int sock_init(void)
160160
*
161161
*--------------------------------------------------------------------*/
162162

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])
164164
{
165165
#define MAX_HOSTS 50
166166

@@ -172,7 +172,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
172172
int err;
173173
int server_sock = -1;
174174

175-
strlcpy (ipaddr_str, "???", SOCK_IPADDR_LEN);
175+
strlcpy (ipaddr_str, "???", DWSOCK_IPADDR_LEN);
176176
memset (&hints, 0, sizeof(hints));
177177

178178
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,
212212

213213
if (debug) {
214214
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);
216216
dw_printf (" %s\n", ipaddr_str);
217217
}
218218

@@ -226,7 +226,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
226226
text_color_set(DW_COLOR_DEBUG);
227227
dw_printf ("addresses for hostname:\n");
228228
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);
230230
dw_printf (" %s\n", ipaddr_str);
231231
}
232232
}
@@ -242,7 +242,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
242242
#endif
243243
ai = hosts[n];
244244

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);
246246
is = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
247247
#if __WIN32__
248248
if (is == INVALID_SOCKET) {
@@ -313,13 +313,13 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
313313

314314
return (server_sock);
315315

316-
} /* end sock_connect */
316+
} /* end dwsock_connect */
317317

318318

319319

320320
/*-------------------------------------------------------------------
321321
*
322-
* Name: sock_bind
322+
* Name: dwsock_bind
323323
*
324324
* Purpose: We also have a bunch of duplicate code for the server side.
325325
*
@@ -366,7 +366,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
366366

367367
/*-------------------------------------------------------------------
368368
*
369-
* Name: sock_ia_to_text
369+
* Name: dwsock_ia_to_text
370370
*
371371
* Purpose: Convert binary IP Address to text form.
372372
*
@@ -392,7 +392,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
392392
*
393393
*--------------------------------------------------------------------*/
394394

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)
396396
{
397397
struct sockaddr_in *sa4;
398398
struct sockaddr_in6 *sa6;
@@ -433,6 +433,19 @@ char *sock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t Stri
433433
}
434434
return pStringBuf;
435435

436-
} /* end sock_ia_to_text */
436+
} /* end dwsock_ia_to_text */
437437

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 */

dwsock.h

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
/* dwsock.h - Socket helper functions. */
3+
4+
#ifndef DWSOCK_H
5+
#define DWSOCK_H 1
6+
7+
#define DWSOCK_IPADDR_LEN 48 // Size of string to hold IPv4 or IPv6 address.
8+
// I think 40 would be adequate but we'll make
9+
// it a little larger just to be safe.
10+
// Use INET6_ADDRSTRLEN (from netinet/in.h) instead?
11+
12+
int dwsock_init (void);
13+
14+
int dwsock_connect (char *hostname, char *port, char *description, int allow_ipv6, int debug, char *ipaddr_str);
15+
/* ipaddr_str needs to be at least SOCK_IPADDR_LEN bytes */
16+
17+
char *dwsock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t StringBufSize);
18+
19+
void dwsock_close (int fd);
20+
21+
#endif

kissutil.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
#include "textcolor.h"
6666
#include "serial_port.h"
6767
#include "kiss_frame.h"
68-
#include "sock.h"
68+
#include "dwsock.h"
6969
#include "dtime_now.h"
7070
#include "audio.h" // for DEFAULT_TXDELAY, etc.
7171
#include "dtime_now.h"
@@ -611,7 +611,7 @@ static void send_to_kiss_tnc (int chan, int cmd, char *data, int dlen)
611611
static THREAD_F tnc_listen_net (void *arg)
612612
{
613613
int err;
614-
char ipaddr_str[SOCK_IPADDR_LEN]; // Text form of IP address.
614+
char ipaddr_str[DWSOCK_IPADDR_LEN]; // Text form of IP address.
615615
char data[4096];
616616
int allow_ipv6 = 0; // Maybe someday.
617617
int debug = 0;
@@ -620,7 +620,7 @@ static THREAD_F tnc_listen_net (void *arg)
620620

621621
memset (&kstate, 0, sizeof(kstate));
622622

623-
err = sock_init ();
623+
err = dwsock_init ();
624624
if (err < 0) {
625625
text_color_set(DW_COLOR_ERROR);
626626
dw_printf ("Network interface failure. Can't go on.\n");
@@ -633,7 +633,7 @@ static THREAD_F tnc_listen_net (void *arg)
633633
// For the IGate we would loop around and try to reconnect if the TNC
634634
// goes away. We should probably do the same here.
635635

636-
server_sock = sock_connect (hostname, port, "TCP KISS TNC", allow_ipv6, debug, ipaddr_str);
636+
server_sock = dwsock_connect (hostname, port, "TCP KISS TNC", allow_ipv6, debug, ipaddr_str);
637637

638638
if (server_sock == -1) {
639639
text_color_set(DW_COLOR_ERROR);

sock.h

-19
This file was deleted.

0 commit comments

Comments
 (0)