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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
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>
|
2008-10-19 17:43:04 +00:00
|
|
|
typedef int socklen_t;
|
|
|
|
typedef uint16_t tr_port_t;
|
2008-09-23 19:11:04 +00:00
|
|
|
#elif defined( __BEOS__ )
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2008-10-19 17:43:04 +00:00
|
|
|
typedef unsigned short tr_port_t;
|
|
|
|
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>
|
2008-10-19 17:43:04 +00:00
|
|
|
typedef in_port_t tr_port_t;
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2008-09-23 19:11:04 +00:00
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#define ENOTCONN WSAENOTCONN
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#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
|
|
|
|
|
2007-07-14 16:29:21 +00:00
|
|
|
struct in_addr;
|
|
|
|
struct sockaddr_in;
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* DNS resolution
|
|
|
|
**********************************************************************/
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_netResolve( const char *,
|
|
|
|
struct in_addr * );
|
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
|
|
|
**********************************************************************/
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_netOpenTCP( const struct in_addr * addr,
|
2008-10-14 20:44:41 +00:00
|
|
|
tr_port_t port );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_netBindTCP( int port );
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_netAccept( int s,
|
|
|
|
struct in_addr *,
|
|
|
|
tr_port_t * );
|
|
|
|
|
|
|
|
int tr_netSetTOS( int s,
|
|
|
|
int tos );
|
|
|
|
|
|
|
|
void tr_netClose( int s );
|
|
|
|
|
|
|
|
void tr_netNtop( const struct in_addr * addr,
|
|
|
|
char * buf,
|
|
|
|
int len );
|
|
|
|
|
|
|
|
void tr_netInit( void );
|
2007-08-02 19:43:29 +00:00
|
|
|
|
2007-07-31 14:26:44 +00:00
|
|
|
#endif /* _TR_NET_H_ */
|