2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2005-2008 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>
|
|
|
|
#include <winsock2.h>
|
2009-01-10 02:22:13 +00:00
|
|
|
#include <WS2tcpip.h>
|
2008-10-19 17:43:04 +00:00
|
|
|
typedef int socklen_t;
|
2007-07-31 14:26:44 +00:00
|
|
|
#else
|
2008-09-23 19:11:04 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WIN32
|
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
|
|
|
|
|
2008-11-21 16:32:55 +00:00
|
|
|
struct tr_session;
|
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;
|
|
|
|
|
|
|
|
const char *tr_ntop( const tr_address * src,
|
|
|
|
char * dst,
|
|
|
|
int size );
|
|
|
|
const char *tr_ntop_non_ts( const tr_address * src );
|
|
|
|
tr_address *tr_pton( const char * src,
|
|
|
|
tr_address * dst );
|
|
|
|
int tr_compareAddresses( const tr_address * a,
|
|
|
|
const tr_address * b);
|
|
|
|
|
2009-01-17 23:14:35 +00:00
|
|
|
tr_bool tr_isValidPeerAddress( const tr_address * addr, tr_port port );
|
2009-01-02 04:47:37 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_isAddress( const tr_address * a ) { return ( a != NULL ) && ( a->type==TR_AF_INET || a->type==TR_AF_INET6 ); }
|
2008-12-16 21:06:47 +00:00
|
|
|
|
2009-02-07 00:34:10 +00:00
|
|
|
tr_bool tr_net_hasIPv6( tr_port );
|
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
|
|
|
**********************************************************************/
|
2009-12-15 17:39:19 +00:00
|
|
|
int tr_netOpenPeerSocket( tr_session * session,
|
|
|
|
const tr_address * addr,
|
|
|
|
tr_port port,
|
|
|
|
tr_bool clientIsSeed );
|
2006-07-16 19:39:23 +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,
|
|
|
|
tr_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
|
|
|
|
2009-11-10 17:03:23 +00:00
|
|
|
const unsigned char *tr_globalIPv6( void );
|
|
|
|
|
2009-12-14 02:07:47 +00:00
|
|
|
|
2007-07-31 14:26:44 +00:00
|
|
|
#endif /* _TR_NET_H_ */
|