2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2007-07-31 14:26:44 +00:00
|
|
|
#ifndef _TR_NET_H_
|
|
|
|
#define _TR_NET_H_
|
|
|
|
|
2007-07-31 16:55:47 +00:00
|
|
|
#ifdef WIN32
|
2008-09-23 19:11:04 +00:00
|
|
|
#include <inttypes.h>
|
2010-06-22 00:12:52 +00:00
|
|
|
#include <ws2tcpip.h>
|
2007-07-31 14:26:44 +00:00
|
|
|
#else
|
2008-09-23 19:11:04 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2010-06-22 00:12:52 +00:00
|
|
|
#define EADDRINUSE WSAEADDRINUSE
|
2009-01-11 17:02:04 +00:00
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#define ENOTCONN WSAENOTCONN
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
|
|
#define ENETUNREACH WSAENETUNREACH
|
|
|
|
#define sockerrno WSAGetLastError( )
|
2007-07-31 16:55:47 +00:00
|
|
|
#else
|
2008-09-23 19:11:04 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#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
|
|
|
|
}
|
|
|
|
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;
|
2008-12-15 00:17:08 +00:00
|
|
|
union {
|
|
|
|
/* The order here is important for tr_in{,6}addr_any initialization,
|
|
|
|
* since we can't use C99 designated initializers */
|
|
|
|
struct in6_addr addr6;
|
|
|
|
struct in_addr addr4;
|
|
|
|
} addr;
|
|
|
|
} tr_address;
|
|
|
|
|
|
|
|
extern const tr_address tr_inaddr_any;
|
|
|
|
extern const tr_address tr_in6addr_any;
|
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
const char* tr_address_to_string( const tr_address * addr );
|
2011-03-04 21:00:52 +00:00
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
const char* tr_address_to_string_with_buf( const tr_address * addr,
|
|
|
|
char * buf,
|
|
|
|
size_t buflen );
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
bool tr_address_from_string ( tr_address * setme,
|
|
|
|
const char * string );
|
2009-01-02 04:47:37 +00:00
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
bool tr_address_from_sockaddr_storage( tr_address * setme,
|
|
|
|
tr_port * port,
|
|
|
|
const struct sockaddr_storage * src );
|
2008-12-16 21:06:47 +00:00
|
|
|
|
2011-03-25 05:34:26 +00:00
|
|
|
int tr_address_compare( const tr_address * a,
|
|
|
|
const tr_address * b );
|
|
|
|
|
|
|
|
bool tr_address_is_valid_for_peers( const tr_address * addr,
|
|
|
|
tr_port port );
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
tr_address_is_valid( const tr_address * a )
|
|
|
|
{
|
|
|
|
return ( a != NULL ) && ( a->type==TR_AF_INET || a->type==TR_AF_INET6 );
|
|
|
|
}
|
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
|
|
|
|
|
|
|
struct tr_session;
|
|
|
|
|
2009-12-15 17:39:19 +00:00
|
|
|
int tr_netOpenPeerSocket( tr_session * session,
|
|
|
|
const tr_address * addr,
|
|
|
|
tr_port port,
|
2011-03-22 15:19:54 +00:00
|
|
|
bool clientIsSeed );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2011-02-18 00:36:19 +00:00
|
|
|
struct UTPSocket *
|
|
|
|
tr_netOpenPeerUTPSocket( tr_session * session,
|
|
|
|
const tr_address * addr,
|
|
|
|
tr_port port,
|
2011-03-22 15:19:54 +00:00
|
|
|
bool clientIsSeed);
|
2011-02-18 00:36:19 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int tr_netBindTCP( const tr_address * addr,
|
2008-12-15 00:17:08 +00:00
|
|
|
tr_port port,
|
2011-03-22 15:19:54 +00:00
|
|
|
bool suppressMsgs );
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2008-12-22 19:14:43 +00:00
|
|
|
int tr_netAccept( tr_session * session,
|
|
|
|
int bound,
|
|
|
|
tr_address * setme_addr,
|
|
|
|
tr_port * setme_port );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
|
|
|
int tr_netSetTOS( int s,
|
|
|
|
int tos );
|
|
|
|
|
2010-04-22 01:49:16 +00:00
|
|
|
int tr_netSetCongestionControl( int s, const char *algorithm );
|
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
void tr_netClose( tr_session * session, int s );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-10-27 20:27:27 +00:00
|
|
|
void tr_netCloseSocket( int fd );
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_netInit( void );
|
2007-08-02 19:43:29 +00:00
|
|
|
|
2011-03-25 05:34:26 +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)
|
|
|
|
*/
|
|
|
|
char* tr_net_strerror( char * buf, size_t buflen, int err );
|
|
|
|
|
2009-11-10 17:03:23 +00:00
|
|
|
const unsigned char *tr_globalIPv6( void );
|
|
|
|
|
2010-06-25 20:36:10 +00:00
|
|
|
#if defined( WIN32) && !defined(QT_DLL)
|
|
|
|
/* The QT exclusion is because something clashes whith the next include */
|
|
|
|
#include <ws2tcpip.h> /* socklen_t */
|
|
|
|
|
|
|
|
#endif
|
2009-12-14 02:07:47 +00:00
|
|
|
|
2007-07-31 14:26:44 +00:00
|
|
|
#endif /* _TR_NET_H_ */
|