/* * Hamlib Interface - network communication low-level support * Copyright (c) 2000-2008 by Stephane Fillod * * $Id: network.c,v 1.4 2008-10-31 07:51:46 fillods Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /** * \addtogroup rig_internal * @{ */ /** * \brief Network port IO * \file network.c */ /* needed for getaddrinfo, will not work with Win95/Win98 */ #define WINVER 0x0501 #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include /* Standard input/output definitions */ #include /* String function definitions */ #include /* UNIX standard function definitions */ #include /* File control definitions */ #include /* Error number definitions */ #include #include #include #include #include #ifdef HAVE_NETINET_IN_H #include #include /* TODO */ #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #elif HAVE_WS2TCPIP_H #include #endif #include "hamlib/rig.h" #include "network.h" #include "misc.h" /** * \brief Open network port using rig.state data * * Open Open network port using rig.state data. * NB: the signal PIPE will be ignored for the whole application. * * \param rp port data structure (must spec port id eg hostname:port) * \return RIG_OK or < 0 if error */ int network_open(hamlib_port_t *rp, int default_port) { #ifdef HAVE_GETADDRINFO int fd; /* File descriptor for the port */ int status; struct addrinfo hints, *res; char *portstr; char hostname[FILPATHLEN] = "localhost"; char defaultportstr[8]; if (!rp) return -RIG_EINVAL; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_INET /* PF_UNSPEC */; hints.ai_socktype = SOCK_STREAM; if (rp->pathname[0] == ':') { portstr = rp->pathname+1; } else { strncpy(hostname, rp->pathname, FILPATHLEN-1); /* search last ':', because IPv6 may have some */ portstr = strrchr(hostname, ':'); if (portstr) { *portstr++ = '\0'; } else { sprintf(defaultportstr, "%d", default_port); portstr = defaultportstr; } } status=getaddrinfo(hostname, portstr, &hints, &res); if (status != 0) { rig_debug(RIG_DEBUG_ERR, "Cannot get host \"%s\": %s\n", rp->pathname, gai_strerror(errno)); return -RIG_ECONF; } /* we don't want a signal when connection get broken */ #ifdef SIGPIPE signal(SIGPIPE, SIG_IGN); #endif fd = socket(res->ai_family, res->ai_socktype, res->ai_protocol); if (fd < 0) return -RIG_EIO; status = connect(fd, res->ai_addr, res->ai_addrlen); freeaddrinfo(res); if (status < 0) { rig_debug(RIG_DEBUG_ERR, "Cannot open NET device \"%s\": %s\n", rp->pathname, strerror(errno)); close(fd); return -RIG_EIO; } rp->fd = fd; return RIG_OK; #else return -RIG_ENAVAIL; #endif } /** @} */