2007-09-20 16:32:01 +00:00
|
|
|
/*
|
2010-01-04 21:00:47 +00:00
|
|
|
* This file Copyright (C) 2007-2010 Mnemosyne LLC
|
2007-09-20 16:32:01 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2007-09-20 16:32:01 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
#ifndef TR_PEER_IO_H
|
|
|
|
#define TR_PEER_IO_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2009-01-02 17:46:22 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <event.h>
|
|
|
|
|
|
|
|
#include "transmission.h"
|
2009-01-02 19:56:06 +00:00
|
|
|
#include "bandwidth.h"
|
2009-01-02 17:46:22 +00:00
|
|
|
#include "list.h" /* __tr_list */
|
|
|
|
#include "net.h" /* tr_address */
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct evbuffer;
|
2008-11-24 04:21:23 +00:00
|
|
|
struct tr_bandwidth;
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_crypto;
|
2009-01-02 17:46:22 +00:00
|
|
|
struct tr_peerIo;
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup networked_io Networked IO
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-01-02 17:46:22 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
READ_NOW,
|
|
|
|
READ_LATER,
|
|
|
|
READ_ERR
|
|
|
|
}
|
|
|
|
ReadState;
|
|
|
|
|
|
|
|
typedef ReadState ( *tr_can_read_cb )( struct tr_peerIo * io,
|
|
|
|
void * user_data,
|
|
|
|
size_t * setme_piece_byte_count );
|
|
|
|
|
|
|
|
typedef void ( *tr_did_write_cb )( struct tr_peerIo * io,
|
|
|
|
size_t bytesWritten,
|
|
|
|
int wasPieceData,
|
|
|
|
void * userData );
|
|
|
|
|
|
|
|
typedef void ( *tr_net_error_cb )( struct tr_peerIo * io,
|
|
|
|
short what,
|
|
|
|
void * userData );
|
|
|
|
|
|
|
|
typedef struct tr_peerIo
|
|
|
|
{
|
2009-01-02 19:56:06 +00:00
|
|
|
tr_bool isEncrypted;
|
|
|
|
tr_bool isIncoming;
|
|
|
|
tr_bool peerIdIsSet;
|
|
|
|
tr_bool extendedProtocolSupported;
|
|
|
|
tr_bool fastExtensionSupported;
|
2009-05-19 18:38:26 +00:00
|
|
|
tr_bool dhtSupported;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-19 13:55:41 +00:00
|
|
|
/* we create the socket in a nonblocking way, so this flag is initially
|
|
|
|
* false and then set to true when libevent says that the socket is ready
|
|
|
|
* for reading or writing */
|
|
|
|
tr_bool hasFinishedConnecting;
|
|
|
|
|
2009-04-18 23:17:30 +00:00
|
|
|
tr_priority_t priority;
|
|
|
|
|
2009-01-24 14:49:35 +00:00
|
|
|
int pendingEvents;
|
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
int magicNumber;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
uint8_t encryptionMode;
|
2009-12-02 05:30:46 +00:00
|
|
|
tr_bool isSeed;
|
2009-01-05 04:27:54 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
tr_port port;
|
|
|
|
int socket;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-19 14:05:43 +00:00
|
|
|
int refCount;
|
2009-01-05 04:27:54 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
uint8_t peerId[SHA_DIGEST_LENGTH];
|
|
|
|
time_t timeCreated;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
tr_session * session;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
tr_address addr;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
tr_can_read_cb canRead;
|
|
|
|
tr_did_write_cb didWrite;
|
|
|
|
tr_net_error_cb gotError;
|
|
|
|
void * userData;
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
struct tr_bandwidth bandwidth;
|
2009-01-02 17:46:22 +00:00
|
|
|
struct tr_crypto * crypto;
|
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
struct evbuffer * inbuf;
|
|
|
|
struct evbuffer * outbuf;
|
|
|
|
struct __tr_list outbuf_datatypes; /* struct tr_datatype */
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2009-01-02 19:56:06 +00:00
|
|
|
struct event event_read;
|
|
|
|
struct event event_write;
|
2009-01-02 17:46:22 +00:00
|
|
|
}
|
|
|
|
tr_peerIo;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
tr_peerIo* tr_peerIoNewOutgoing( tr_session * session,
|
2009-01-02 19:56:06 +00:00
|
|
|
struct tr_bandwidth * parent,
|
2008-12-02 03:41:58 +00:00
|
|
|
const struct tr_address * addr,
|
|
|
|
tr_port port,
|
2009-12-02 05:30:46 +00:00
|
|
|
const uint8_t * torrentHash,
|
|
|
|
tr_bool isSeed );
|
2008-11-17 04:00:57 +00:00
|
|
|
|
2008-12-14 11:21:11 +00:00
|
|
|
tr_peerIo* tr_peerIoNewIncoming( tr_session * session,
|
2009-01-02 19:56:06 +00:00
|
|
|
struct tr_bandwidth * parent,
|
2008-12-02 03:41:58 +00:00
|
|
|
const struct tr_address * addr,
|
|
|
|
tr_port port,
|
|
|
|
int socket );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-01-24 17:20:07 +00:00
|
|
|
void tr_peerIoRefImpl ( const char * file,
|
|
|
|
int line,
|
|
|
|
tr_peerIo * io );
|
2009-01-05 04:27:54 +00:00
|
|
|
|
2009-01-24 17:20:07 +00:00
|
|
|
#define tr_peerIoRef(io) tr_peerIoRefImpl( __FILE__, __LINE__, (io) );
|
|
|
|
|
|
|
|
void tr_peerIoUnrefImpl ( const char * file,
|
|
|
|
int line,
|
|
|
|
tr_peerIo * io );
|
|
|
|
|
|
|
|
#define tr_peerIoUnref(io) tr_peerIoUnrefImpl( __FILE__, __LINE__, (io) );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-12-21 18:15:00 +00:00
|
|
|
tr_bool tr_isPeerIo ( const tr_peerIo * io );
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2008-12-05 22:56:19 +00:00
|
|
|
void tr_peerIoEnableLTEP( tr_peerIo * io, tr_bool flag );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoSupportsLTEP( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
|
|
|
|
return io->extendedProtocolSupported;
|
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-05 22:56:19 +00:00
|
|
|
void tr_peerIoEnableFEXT( tr_peerIo * io, tr_bool flag );
|
2008-12-02 17:10:54 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoSupportsFEXT( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
|
|
|
|
return io->fastExtensionSupported;
|
|
|
|
}
|
2008-12-02 17:10:54 +00:00
|
|
|
|
2009-05-19 18:38:26 +00:00
|
|
|
void tr_peerIoEnableDHT( tr_peerIo * io, tr_bool flag );
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoSupportsDHT( const tr_peerIo * io )
|
2009-05-19 18:38:26 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
|
|
|
|
return io->dhtSupported;
|
|
|
|
}
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_session* tr_peerIoGetSession ( tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
assert( io->session );
|
|
|
|
|
|
|
|
return io->session;
|
|
|
|
}
|
2007-09-30 23:55:49 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
const char* tr_peerIoAddrStr( const struct tr_address * addr,
|
|
|
|
tr_port port );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline const char* tr_peerIoGetAddrStr( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
2009-01-16 23:17:31 +00:00
|
|
|
return tr_isPeerIo( io ) ? tr_peerIoAddrStr( &io->addr, io->port ) : "error";
|
2009-01-02 19:56:06 +00:00
|
|
|
}
|
2008-12-02 03:41:58 +00:00
|
|
|
|
|
|
|
const struct tr_address * tr_peerIoGetAddress( const tr_peerIo * io,
|
|
|
|
tr_port * port );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
const uint8_t* tr_peerIoGetTorrentHash( tr_peerIo * io );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_peerIoHasTorrentHash( const tr_peerIo * io );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
void tr_peerIoSetTorrentHash( tr_peerIo * io,
|
2008-09-23 19:11:04 +00:00
|
|
|
const uint8_t * hash );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_peerIoReconnect( tr_peerIo * io );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoIsIncoming( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
return io->isIncoming;
|
|
|
|
}
|
2008-01-11 02:09:20 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline int tr_peerIoGetAge( const tr_peerIo * io )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
return time( NULL ) - io->timeCreated;
|
|
|
|
}
|
2007-10-11 03:54:33 +00:00
|
|
|
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_peerIoSetPeersId( tr_peerIo * io,
|
|
|
|
const uint8_t * peer_id );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline const uint8_t* tr_peerIoGetPeersId( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
assert( io->peerIdIsSet );
|
|
|
|
|
|
|
|
return io->peerId;
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2008-11-17 04:00:57 +00:00
|
|
|
void tr_peerIoSetIOFuncs ( tr_peerIo * io,
|
|
|
|
tr_can_read_cb readcb,
|
|
|
|
tr_did_write_cb writecb,
|
|
|
|
tr_net_error_cb errcb,
|
|
|
|
void * user_data );
|
2008-10-23 02:37:21 +00:00
|
|
|
|
2009-01-05 18:20:47 +00:00
|
|
|
void tr_peerIoClear ( tr_peerIo * io );
|
|
|
|
|
2008-11-17 04:00:57 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2008-10-23 02:37:21 +00:00
|
|
|
|
2008-11-17 04:00:57 +00:00
|
|
|
void tr_peerIoWrite ( tr_peerIo * io,
|
|
|
|
const void * writeme,
|
|
|
|
size_t writemeLen,
|
2009-01-22 14:32:29 +00:00
|
|
|
tr_bool isPieceData );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-11-17 04:00:57 +00:00
|
|
|
void tr_peerIoWriteBuf ( tr_peerIo * io,
|
|
|
|
struct evbuffer * buf,
|
2009-01-22 14:32:29 +00:00
|
|
|
tr_bool isPieceData );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline struct tr_crypto * tr_peerIoGetCrypto( tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
return io->crypto;
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* these match the values in MSE's crypto_select */
|
2008-09-23 19:11:04 +00:00
|
|
|
PEER_ENCRYPTION_NONE = ( 1 << 0 ),
|
|
|
|
PEER_ENCRYPTION_RC4 = ( 1 << 1 )
|
2007-09-20 16:32:01 +00:00
|
|
|
}
|
|
|
|
EncryptionMode;
|
|
|
|
|
2008-12-16 22:08:17 +00:00
|
|
|
void tr_peerIoSetEncryption( tr_peerIo * io,
|
|
|
|
int encryptionMode );
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoIsEncrypted( const tr_peerIo * io )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
return ( io != NULL ) && ( io->encryptionMode == PEER_ENCRYPTION_RC4 );
|
|
|
|
}
|
2008-12-16 22:08:17 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoWriteBytes( tr_peerIo * io UNUSED,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * outbuf,
|
|
|
|
const void * bytes,
|
|
|
|
size_t byteCount )
|
|
|
|
{
|
|
|
|
evbuffer_add( outbuf, bytes, byteCount );
|
|
|
|
}
|
2008-12-16 22:08:17 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoWriteUint8( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * outbuf,
|
|
|
|
uint8_t writeme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
tr_peerIoWriteBytes( io, outbuf, &writeme, sizeof( uint8_t ) );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoWriteUint16( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * outbuf,
|
|
|
|
uint16_t writeme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
const uint16_t tmp = htons( writeme );
|
|
|
|
tr_peerIoWriteBytes( io, outbuf, &tmp, sizeof( uint16_t ) );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoWriteUint32( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * outbuf,
|
|
|
|
uint32_t writeme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
const uint32_t tmp = htonl( writeme );
|
|
|
|
tr_peerIoWriteBytes( io, outbuf, &tmp, sizeof( uint32_t ) );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-01-22 14:32:29 +00:00
|
|
|
void tr_peerIoReadBytes( tr_peerIo * io,
|
|
|
|
struct evbuffer * inbuf,
|
|
|
|
void * bytes,
|
|
|
|
size_t byteCount );
|
2007-09-26 14:42:03 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoReadUint8( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * inbuf,
|
|
|
|
uint8_t * setme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
tr_peerIoReadBytes( io, inbuf, setme, sizeof( uint8_t ) );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoReadUint16( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * inbuf,
|
|
|
|
uint16_t * setme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
uint16_t tmp;
|
|
|
|
tr_peerIoReadBytes( io, inbuf, &tmp, sizeof( uint16_t ) );
|
|
|
|
*setme = ntohs( tmp );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoReadUint32( tr_peerIo * io,
|
2009-01-22 14:32:29 +00:00
|
|
|
struct evbuffer * inbuf,
|
|
|
|
uint32_t * setme )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
uint32_t tmp;
|
|
|
|
tr_peerIoReadBytes( io, inbuf, &tmp, sizeof( uint32_t ) );
|
|
|
|
*setme = ntohl( tmp );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-01-22 14:32:29 +00:00
|
|
|
void tr_peerIoDrain( tr_peerIo * io,
|
|
|
|
struct evbuffer * inbuf,
|
|
|
|
size_t byteCount );
|
2008-12-16 22:08:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2007-09-26 14:42:03 +00:00
|
|
|
|
2009-01-05 04:27:54 +00:00
|
|
|
size_t tr_peerIoGetWriteBufferSpace( const tr_peerIo * io, uint64_t now );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline void tr_peerIoSetParent( tr_peerIo * io,
|
2009-01-24 03:17:59 +00:00
|
|
|
struct tr_bandwidth * parent )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
|
|
|
|
tr_bandwidthSetParent( &io->bandwidth, parent );
|
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-12-16 22:08:17 +00:00
|
|
|
void tr_peerIoBandwidthUsed( tr_peerIo * io,
|
|
|
|
tr_direction direction,
|
|
|
|
size_t byteCount,
|
|
|
|
int isPieceData );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline tr_bool tr_peerIoHasBandwidthLeft( const tr_peerIo * io,
|
2009-01-24 03:17:59 +00:00
|
|
|
tr_direction dir )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
|
2009-01-24 03:17:59 +00:00
|
|
|
return !io->hasFinishedConnecting
|
|
|
|
|| ( tr_bandwidthClamp( &io->bandwidth, dir, 1024 ) > 0 );
|
2009-01-02 19:56:06 +00:00
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline double tr_peerIoGetPieceSpeed( const tr_peerIo * io, uint64_t now, tr_direction dir )
|
2009-01-02 19:56:06 +00:00
|
|
|
{
|
|
|
|
assert( tr_isPeerIo( io ) );
|
|
|
|
assert( tr_isDirection( dir ) );
|
|
|
|
|
2009-01-05 04:27:54 +00:00
|
|
|
return tr_bandwidthGetPieceSpeed( &io->bandwidth, now, dir );
|
2009-01-02 19:56:06 +00:00
|
|
|
}
|
2009-01-02 17:46:22 +00:00
|
|
|
|
2008-09-17 19:44:24 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2008-12-20 22:19:34 +00:00
|
|
|
void tr_peerIoSetEnabled( tr_peerIo * io,
|
|
|
|
tr_direction dir,
|
|
|
|
tr_bool isEnabled );
|
2009-08-12 14:40:32 +00:00
|
|
|
|
2009-01-19 14:05:43 +00:00
|
|
|
int tr_peerIoFlush( tr_peerIo * io,
|
2008-12-16 22:08:17 +00:00
|
|
|
tr_direction dir,
|
|
|
|
size_t byteLimit );
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2009-04-21 16:18:51 +00:00
|
|
|
int tr_peerIoFlushOutgoingProtocolMsgs( tr_peerIo * io );
|
|
|
|
|
2009-01-02 17:46:22 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline struct evbuffer * tr_peerIoGetReadBuffer( tr_peerIo * io )
|
2009-01-02 17:46:22 +00:00
|
|
|
{
|
|
|
|
return io->inbuf;
|
|
|
|
}
|
2008-11-25 21:35:17 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
#endif
|