Rename sock.c to dwsock.c to avoid confusion.

This commit is contained in:
wb2osz 2019-01-06 11:29:24 -05:00
parent ecf5fd1d59
commit ab40b1169e
4 changed files with 55 additions and 40 deletions

View File

@ -21,7 +21,7 @@
/*------------------------------------------------------------------ /*------------------------------------------------------------------
* *
* Module: sock.c * Module: dwsock.c
* *
* Purpose: Functions for TCP sockets. * Purpose: Functions for TCP sockets.
* *
@ -66,14 +66,14 @@
#include <time.h> #include <time.h>
#include "textcolor.h" #include "textcolor.h"
#include "sock.h" #include "dwsock.h"
static void shuffle (struct addrinfo *host[], int nhosts); static void shuffle (struct addrinfo *host[], int nhosts);
/*------------------------------------------------------------------- /*-------------------------------------------------------------------
* *
* Name: sock_init * Name: dwsock_init
* *
* Purpose: Preparation before using socket interface. * Purpose: Preparation before using socket interface.
* *
@ -97,7 +97,7 @@ static void shuffle (struct addrinfo *host[], int nhosts);
* *
*--------------------------------------------------------------------*/ *--------------------------------------------------------------------*/
int sock_init(void) int dwsock_init(void)
{ {
#if __WIN32__ #if __WIN32__
WSADATA wsadata; WSADATA wsadata;
@ -119,7 +119,7 @@ int sock_init(void)
#endif #endif
return (0); return (0);
} /* end sock_init */ } /* end dwsock_init */
@ -141,7 +141,7 @@ int sock_init(void)
* debug - Print debugging information. * debug - Print debugging information.
* *
* Outputs: ipaddr_str - The IP address, in text form, is placed here in case * Outputs: ipaddr_str - The IP address, in text form, is placed here in case
* the caller wants it. Should be SOCK_IPADDR_LEN bytes. * the caller wants it. Should be DWSOCK_IPADDR_LEN bytes.
* *
* Returns: Socket Handle / file descriptor or -1 for error. * Returns: Socket Handle / file descriptor or -1 for error.
* *
@ -160,7 +160,7 @@ int sock_init(void)
* *
*--------------------------------------------------------------------*/ *--------------------------------------------------------------------*/
int sock_connect (char *hostname, char *port, char *description, int allow_ipv6, int debug, char ipaddr_str[SOCK_IPADDR_LEN]) int dwsock_connect (char *hostname, char *port, char *description, int allow_ipv6, int debug, char ipaddr_str[DWSOCK_IPADDR_LEN])
{ {
#define MAX_HOSTS 50 #define MAX_HOSTS 50
@ -172,7 +172,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
int err; int err;
int server_sock = -1; int server_sock = -1;
strlcpy (ipaddr_str, "???", SOCK_IPADDR_LEN); strlcpy (ipaddr_str, "???", DWSOCK_IPADDR_LEN);
memset (&hints, 0, sizeof(hints)); memset (&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC; /* Allow either IPv4 or IPv6. */ 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,
if (debug) { if (debug) {
text_color_set(DW_COLOR_DEBUG); text_color_set(DW_COLOR_DEBUG);
sock_ia_to_text (ai->ai_family, ai->ai_addr, ipaddr_str, SOCK_IPADDR_LEN); dwsock_ia_to_text (ai->ai_family, ai->ai_addr, ipaddr_str, DWSOCK_IPADDR_LEN);
dw_printf (" %s\n", ipaddr_str); dw_printf (" %s\n", ipaddr_str);
} }
@ -226,7 +226,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
text_color_set(DW_COLOR_DEBUG); text_color_set(DW_COLOR_DEBUG);
dw_printf ("addresses for hostname:\n"); dw_printf ("addresses for hostname:\n");
for (n=0; n<num_hosts; n++) { for (n=0; n<num_hosts; n++) {
sock_ia_to_text (hosts[n]->ai_family, hosts[n]->ai_addr, ipaddr_str, SOCK_IPADDR_LEN); dwsock_ia_to_text (hosts[n]->ai_family, hosts[n]->ai_addr, ipaddr_str, DWSOCK_IPADDR_LEN);
dw_printf (" %s\n", ipaddr_str); dw_printf (" %s\n", ipaddr_str);
} }
} }
@ -242,7 +242,7 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
#endif #endif
ai = hosts[n]; ai = hosts[n];
sock_ia_to_text (ai->ai_family, ai->ai_addr, ipaddr_str, SOCK_IPADDR_LEN); dwsock_ia_to_text (ai->ai_family, ai->ai_addr, ipaddr_str, DWSOCK_IPADDR_LEN);
is = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); is = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
#if __WIN32__ #if __WIN32__
if (is == INVALID_SOCKET) { if (is == INVALID_SOCKET) {
@ -313,13 +313,13 @@ int sock_connect (char *hostname, char *port, char *description, int allow_ipv6,
return (server_sock); return (server_sock);
} /* end sock_connect */ } /* end dwsock_connect */
/*------------------------------------------------------------------- /*-------------------------------------------------------------------
* *
* Name: sock_bind * Name: dwsock_bind
* *
* Purpose: We also have a bunch of duplicate code for the server side. * Purpose: We also have a bunch of duplicate code for the server side.
* *
@ -366,7 +366,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
/*------------------------------------------------------------------- /*-------------------------------------------------------------------
* *
* Name: sock_ia_to_text * Name: dwsock_ia_to_text
* *
* Purpose: Convert binary IP Address to text form. * Purpose: Convert binary IP Address to text form.
* *
@ -392,7 +392,7 @@ static void shuffle (struct addrinfo *host[], int nhosts)
* *
*--------------------------------------------------------------------*/ *--------------------------------------------------------------------*/
char *sock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t StringBufSize) char *dwsock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t StringBufSize)
{ {
struct sockaddr_in *sa4; struct sockaddr_in *sa4;
struct sockaddr_in6 *sa6; struct sockaddr_in6 *sa6;
@ -433,6 +433,19 @@ char *sock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t Stri
} }
return pStringBuf; return pStringBuf;
} /* end sock_ia_to_text */ } /* end dwsock_ia_to_text */
/* end sock.c */
void dwsock_close (int fd)
{
#if __WIN32__
closesocket (fd);
#else
close (fd);
#endif
}
/* end dwsock.c */

21
dwsock.h Normal file
View File

@ -0,0 +1,21 @@
/* dwsock.h - Socket helper functions. */
#ifndef DWSOCK_H
#define DWSOCK_H 1
#define DWSOCK_IPADDR_LEN 48 // Size of string to hold IPv4 or IPv6 address.
// I think 40 would be adequate but we'll make
// it a little larger just to be safe.
// Use INET6_ADDRSTRLEN (from netinet/in.h) instead?
int dwsock_init (void);
int dwsock_connect (char *hostname, char *port, char *description, int allow_ipv6, int debug, char *ipaddr_str);
/* ipaddr_str needs to be at least SOCK_IPADDR_LEN bytes */
char *dwsock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t StringBufSize);
void dwsock_close (int fd);
#endif

View File

@ -65,7 +65,7 @@
#include "textcolor.h" #include "textcolor.h"
#include "serial_port.h" #include "serial_port.h"
#include "kiss_frame.h" #include "kiss_frame.h"
#include "sock.h" #include "dwsock.h"
#include "dtime_now.h" #include "dtime_now.h"
#include "audio.h" // for DEFAULT_TXDELAY, etc. #include "audio.h" // for DEFAULT_TXDELAY, etc.
#include "dtime_now.h" #include "dtime_now.h"
@ -611,7 +611,7 @@ static void send_to_kiss_tnc (int chan, int cmd, char *data, int dlen)
static THREAD_F tnc_listen_net (void *arg) static THREAD_F tnc_listen_net (void *arg)
{ {
int err; int err;
char ipaddr_str[SOCK_IPADDR_LEN]; // Text form of IP address. char ipaddr_str[DWSOCK_IPADDR_LEN]; // Text form of IP address.
char data[4096]; char data[4096];
int allow_ipv6 = 0; // Maybe someday. int allow_ipv6 = 0; // Maybe someday.
int debug = 0; int debug = 0;
@ -620,7 +620,7 @@ static THREAD_F tnc_listen_net (void *arg)
memset (&kstate, 0, sizeof(kstate)); memset (&kstate, 0, sizeof(kstate));
err = sock_init (); err = dwsock_init ();
if (err < 0) { if (err < 0) {
text_color_set(DW_COLOR_ERROR); text_color_set(DW_COLOR_ERROR);
dw_printf ("Network interface failure. Can't go on.\n"); dw_printf ("Network interface failure. Can't go on.\n");
@ -633,7 +633,7 @@ static THREAD_F tnc_listen_net (void *arg)
// For the IGate we would loop around and try to reconnect if the TNC // For the IGate we would loop around and try to reconnect if the TNC
// goes away. We should probably do the same here. // goes away. We should probably do the same here.
server_sock = sock_connect (hostname, port, "TCP KISS TNC", allow_ipv6, debug, ipaddr_str); server_sock = dwsock_connect (hostname, port, "TCP KISS TNC", allow_ipv6, debug, ipaddr_str);
if (server_sock == -1) { if (server_sock == -1) {
text_color_set(DW_COLOR_ERROR); text_color_set(DW_COLOR_ERROR);

19
sock.h
View File

@ -1,19 +0,0 @@
/* sock.h - Socket helper functions. */
#ifndef SOCK_H
#define SOCK_H 1
#define SOCK_IPADDR_LEN 48 // Size of string to hold IPv4 or IPv6 address.
// I think 40 would be adequate but we'll make
// it a little larger just to be safe.
// Use INET6_ADDRSTRLEN (from netinet/in.h) instead?
int sock_init (void);
int sock_connect (char *hostname, char *port, char *description, int allow_ipv6, int debug, char *ipaddr_str);
/* ipaddr_str needs to be at least SOCK_IPADDR_LEN bytes */
char *sock_ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t StringBufSize);
#endif