2001-09-09 22:24:39 -04:00
|
|
|
/* sock.h
|
|
|
|
* - General Socket Function Headers
|
|
|
|
*
|
2018-10-12 06:28:09 -04:00
|
|
|
* Copyright (C) 2014 Michael Smith <msmith@icecast.org>,
|
|
|
|
* Brendan Cully <brendan@xiph.org>,
|
|
|
|
* Karl Heyes <karl@xiph.org>,
|
|
|
|
* Jack Moffitt <jack@icecast.org>,
|
|
|
|
* Ed "oddsock" Zaleski <oddsock@xiph.org>,
|
|
|
|
* Copyright (C) 2012-2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
|
2001-09-09 22:24:39 -04:00
|
|
|
*
|
2014-12-05 04:31:08 -05:00
|
|
|
* 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 library is distributed in the hope that it will be useful,
|
2001-09-09 22:24:39 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-12-05 04:31:08 -05:00
|
|
|
* 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., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-09-09 22:24:39 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-10-12 06:16:06 -04:00
|
|
|
#ifndef _LIBIGLOO__SOCK_H_
|
|
|
|
#define _LIBIGLOO__SOCK_H_
|
2001-09-09 22:24:39 -04:00
|
|
|
|
2003-03-07 09:57:36 -05:00
|
|
|
#include <stdarg.h>
|
2002-11-22 08:13:04 -05:00
|
|
|
|
2003-10-19 23:08:46 -04:00
|
|
|
#ifdef HAVE_WINSOCK2_H
|
2001-10-20 01:57:28 -04:00
|
|
|
#include <winsock2.h>
|
2003-10-19 23:08:46 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2002-11-30 21:11:07 -05:00
|
|
|
#include <unistd.h>
|
2003-10-19 23:08:46 -04:00
|
|
|
#elif _WIN32
|
2006-02-23 23:37:22 -05:00
|
|
|
#include <compat.h>
|
2002-11-30 21:11:07 -05:00
|
|
|
#endif
|
2001-09-09 22:24:39 -04:00
|
|
|
|
2002-11-22 08:02:51 -05:00
|
|
|
#ifdef HAVE_SYS_UIO_H
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#else
|
|
|
|
#ifndef _SYS_UIO_H
|
|
|
|
struct iovec
|
|
|
|
{
|
|
|
|
void *iov_base;
|
|
|
|
size_t iov_len;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-03-17 11:47:20 -05:00
|
|
|
#if !defined(HAVE_INET_ATON) && defined(HAVE_INET_PTON)
|
2003-02-06 08:10:48 -05:00
|
|
|
#define inet_aton(a,b) inet_pton(AF_INET, (a), (b))
|
|
|
|
#endif
|
|
|
|
|
2003-02-13 06:29:07 -05:00
|
|
|
#ifdef INET6_ADDRSTRLEN
|
|
|
|
#define MAX_ADDR_LEN INET6_ADDRSTRLEN
|
|
|
|
#else
|
|
|
|
#define MAX_ADDR_LEN 46
|
|
|
|
#endif
|
|
|
|
|
2007-10-24 17:42:01 -04:00
|
|
|
#ifndef sock_t
|
|
|
|
#define sock_t int
|
|
|
|
#endif
|
2002-02-06 20:04:09 -05:00
|
|
|
|
2002-11-22 08:02:51 -05:00
|
|
|
/* The following values are based on unix avoiding errno value clashes */
|
|
|
|
#define SOCK_SUCCESS 0
|
2007-10-24 17:42:01 -04:00
|
|
|
#define SOCK_ERROR (sock_t)-1
|
2002-11-22 08:02:51 -05:00
|
|
|
#define SOCK_TIMEOUT -2
|
|
|
|
|
2001-09-09 22:24:39 -04:00
|
|
|
/* sock connect macro */
|
|
|
|
#define sock_connect(h, p) sock_connect_wto(h, p, 0)
|
|
|
|
|
|
|
|
/* Misc socket functions */
|
|
|
|
void sock_initialize(void);
|
|
|
|
void sock_shutdown(void);
|
|
|
|
char *sock_get_localip(char *buff, int len);
|
|
|
|
int sock_error(void);
|
|
|
|
int sock_recoverable(int error);
|
2003-07-06 21:32:42 -04:00
|
|
|
int sock_stalled(int error);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_valid_socket(sock_t sock);
|
2007-08-21 18:17:13 -04:00
|
|
|
int sock_active (sock_t sock);
|
2009-03-14 12:05:12 -04:00
|
|
|
int sock_set_blocking(sock_t sock, int block);
|
2002-03-22 16:44:29 -05:00
|
|
|
int sock_set_nolinger(sock_t sock);
|
|
|
|
int sock_set_keepalive(sock_t sock);
|
2003-01-18 02:08:00 -05:00
|
|
|
int sock_set_nodelay(sock_t sock);
|
2009-03-14 12:05:12 -04:00
|
|
|
void sock_set_send_buffer (sock_t sock, int win_size);
|
2009-01-07 21:47:44 -05:00
|
|
|
void sock_set_error(int val);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_close(sock_t sock);
|
|
|
|
|
|
|
|
/* Connection related socket functions */
|
2007-10-24 17:42:01 -04:00
|
|
|
sock_t sock_connect_wto(const char *hostname, int port, int timeout);
|
2009-01-07 21:47:44 -05:00
|
|
|
sock_t sock_connect_wto_bind(const char *hostname, int port, const char *bnd, int timeout);
|
2007-10-24 17:42:01 -04:00
|
|
|
sock_t sock_connect_non_blocking(const char *host, unsigned port);
|
|
|
|
int sock_connected(sock_t sock, int timeout);
|
2001-09-09 22:24:39 -04:00
|
|
|
|
|
|
|
/* Socket write functions */
|
2007-10-24 17:42:01 -04:00
|
|
|
int sock_write_bytes(sock_t sock, const void *buff, size_t len);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_write(sock_t sock, const char *fmt, ...);
|
2003-06-05 20:05:19 -04:00
|
|
|
int sock_write_fmt(sock_t sock, const char *fmt, va_list ap);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_write_string(sock_t sock, const char *buff);
|
2007-10-24 17:42:01 -04:00
|
|
|
ssize_t sock_writev (sock_t sock, const struct iovec *iov, size_t count);
|
2002-11-22 08:02:51 -05:00
|
|
|
|
2001-09-09 22:24:39 -04:00
|
|
|
|
|
|
|
/* Socket read functions */
|
2007-10-24 17:42:01 -04:00
|
|
|
int sock_read_bytes(sock_t sock, char *buff, size_t len);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_read_line(sock_t sock, char *string, const int len);
|
|
|
|
|
|
|
|
/* server socket functions */
|
2007-08-08 23:19:24 -04:00
|
|
|
sock_t sock_get_server_socket(int port, const char *sinterface);
|
2001-09-09 22:24:39 -04:00
|
|
|
int sock_listen(sock_t serversock, int backlog);
|
2007-10-24 17:42:01 -04:00
|
|
|
sock_t sock_accept(sock_t serversock, char *ip, size_t len);
|
2001-09-09 22:24:39 -04:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
int inet_aton(const char *s, struct in_addr *a);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __SOCK_H */
|