2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
2011-01-19 13:48:47 +00:00
|
|
|
* Copyright (c) Transmission authors and contributors
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-04 00:00:07 +00:00
|
|
|
#ifdef _WIN32
|
2017-04-19 12:04:45 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <ws2tcpip.h>
|
2007-07-31 14:26:44 +00:00
|
|
|
#else
|
2017-04-19 12:04:45 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "tr-macros.h"
|
|
|
|
|
|
|
|
TR_BEGIN_DECLS
|
|
|
|
|
2014-07-04 00:00:07 +00:00
|
|
|
#ifdef _WIN32
|
2017-04-19 12:04:45 +00:00
|
|
|
typedef SOCKET tr_socket_t;
|
|
|
|
#define TR_BAD_SOCKET INVALID_SOCKET
|
|
|
|
|
|
|
|
#undef EADDRINUSE
|
|
|
|
#define EADDRINUSE WSAEADDRINUSE
|
|
|
|
#undef ECONNREFUSED
|
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#undef ECONNRESET
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#undef EHOSTUNREACH
|
|
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
|
|
#undef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#undef ENOTCONN
|
|
|
|
#define ENOTCONN WSAENOTCONN
|
|
|
|
#undef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#undef EAFNOSUPPORT
|
|
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
|
|
#undef ENETUNREACH
|
|
|
|
#define ENETUNREACH WSAENETUNREACH
|
|
|
|
|
|
|
|
#define sockerrno WSAGetLastError()
|
2007-07-31 16:55:47 +00:00
|
|
|
#else
|
2017-04-19 12:04:45 +00:00
|
|
|
/** @brief Platform-specific socket descriptor type. */
|
|
|
|
typedef int tr_socket_t;
|
|
|
|
/** @brief Platform-specific invalid socket descriptor constant. */
|
|
|
|
#define TR_BAD_SOCKET (-1)
|
2015-03-18 07:34:26 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
#define sockerrno errno
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
/****
|
|
|
|
*****
|
|
|
|
***** tr_address
|
|
|
|
*****
|
|
|
|
****/
|
2007-07-14 16:29:21 +00:00
|
|
|
|
2008-12-17 01:39:24 +00:00
|
|
|
typedef enum tr_address_type
|
|
|
|
{
|
|
|
|
TR_AF_INET,
|
2009-05-14 13:42:29 +00:00
|
|
|
TR_AF_INET6,
|
|
|
|
NUM_TR_AF_INET_TYPES
|
2021-08-15 09:41:48 +00:00
|
|
|
} tr_address_type;
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2008-12-17 01:39:24 +00:00
|
|
|
typedef struct tr_address
|
|
|
|
{
|
|
|
|
tr_address_type type;
|
2017-04-19 12:04:45 +00:00
|
|
|
union
|
|
|
|
{
|
2008-12-15 00:17:08 +00:00
|
|
|
struct in6_addr addr6;
|
2017-04-19 12:04:45 +00:00
|
|
|
struct in_addr addr4;
|
2021-08-15 09:41:48 +00:00
|
|
|
} addr;
|
|
|
|
} tr_address;
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
extern tr_address const tr_inaddr_any;
|
|
|
|
extern tr_address const tr_in6addr_any;
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
char const* tr_address_to_string(tr_address const* addr);
|
2011-03-04 21:00:52 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
char const* tr_address_to_string_with_buf(tr_address const* addr, char* buf, size_t buflen);
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2020-09-13 21:43:29 +00:00
|
|
|
char const* tr_address_and_port_to_string(char* buf, size_t buflen, tr_address const* addr, tr_port port);
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_address_from_string(tr_address* setme, char const* string);
|
2009-01-02 04:47:37 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_address_from_sockaddr_storage(tr_address* setme, tr_port* port, struct sockaddr_storage const* src);
|
2008-12-16 21:06:47 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
int tr_address_compare(tr_address const* a, tr_address const* b);
|
2011-03-25 05:34:26 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_address_is_valid_for_peers(tr_address const* addr, tr_port port);
|
2011-03-25 05:34:26 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static inline bool tr_address_is_valid(tr_address const* a)
|
2011-03-25 05:34:26 +00:00
|
|
|
{
|
2021-09-15 00:18:09 +00:00
|
|
|
return a != nullptr && (a->type == TR_AF_INET || a->type == TR_AF_INET6);
|
2011-03-25 05:34:26 +00:00
|
|
|
}
|
2008-12-18 05:55:22 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
/***********************************************************************
|
2008-05-28 16:56:38 +00:00
|
|
|
* Sockets
|
2006-07-16 19:39:23 +00:00
|
|
|
**********************************************************************/
|
2011-03-25 05:34:26 +00:00
|
|
|
|
2019-07-21 11:09:04 +00:00
|
|
|
/* https://en.wikipedia.org/wiki/Differentiated_services#Class_Selector */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TR_IPTOS_LOWCOST = 0x38, /* AF13: low prio, high drop */
|
|
|
|
TR_IPTOS_LOWDELAY = 0x70, /* AF32: high prio, mid drop */
|
|
|
|
TR_IPTOS_THRUPUT = 0x20, /* CS1: low prio, undef drop */
|
|
|
|
TR_IPTOS_RELIABLE = 0x28 /* AF11: low prio, low drop */
|
|
|
|
};
|
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
struct tr_session;
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_socket_t tr_netBindTCP(tr_address const* addr, tr_port port, bool suppressMsgs);
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_socket_t tr_netAccept(tr_session* session, tr_socket_t bound, tr_address* setme_addr, tr_port* setme_port);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-08-02 10:01:39 +00:00
|
|
|
void tr_netSetTOS(tr_socket_t s, int tos, tr_address_type type);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void tr_netSetCongestionControl(tr_socket_t s, char const* algorithm);
|
2010-04-22 01:49:16 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_netClose(tr_session* session, tr_socket_t s);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_netCloseSocket(tr_socket_t fd);
|
2011-03-25 05:34:26 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_net_hasIPv6(tr_port);
|
2011-03-04 21:00:52 +00:00
|
|
|
|
2010-06-30 21:24:36 +00:00
|
|
|
/**
|
|
|
|
* @brief get a human-representable string representing the network error.
|
|
|
|
* @param err an errno on Unix/Linux and an WSAError on win32)
|
|
|
|
*/
|
2017-04-19 12:04:45 +00:00
|
|
|
char* tr_net_strerror(char* buf, size_t buflen, int err);
|
2009-11-10 17:03:23 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
unsigned char const* tr_globalIPv6(void);
|
2020-08-11 18:11:55 +00:00
|
|
|
|
|
|
|
TR_END_DECLS
|