2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
2008-04-12 00:29:49 +00:00
|
|
|
* $Id$
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TR_INTERNAL_H
|
|
|
|
#define TR_INTERNAL_H 1
|
|
|
|
|
2007-07-29 18:11:21 +00:00
|
|
|
#define TR_NAME "Transmission"
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
#ifndef UNUSED
|
2006-07-16 19:39:23 +00:00
|
|
|
#ifdef __GNUC__
|
2007-07-31 01:21:10 +00:00
|
|
|
#define UNUSED __attribute__((unused))
|
2006-07-16 19:39:23 +00:00
|
|
|
#else
|
2007-07-31 01:21:10 +00:00
|
|
|
#define UNUSED
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|
2007-06-18 03:40:41 +00:00
|
|
|
#endif
|
2007-07-31 14:26:44 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
typedef enum { TR_NET_OK, TR_NET_ERROR, TR_NET_WAIT } tr_tristate_t;
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2008-01-07 06:19:34 +00:00
|
|
|
uint8_t* tr_peerIdNew( void );
|
|
|
|
|
|
|
|
const uint8_t* tr_getPeerId( void );
|
2007-07-16 11:19:44 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_metainfo_lookup
|
|
|
|
{
|
|
|
|
char hashString[2*SHA_DIGEST_LENGTH+1];
|
|
|
|
char * filename;
|
|
|
|
};
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_handle
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2008-06-10 16:16:31 +00:00
|
|
|
unsigned int isPortSet : 1;
|
|
|
|
unsigned int isPexEnabled : 1;
|
2008-06-11 16:15:45 +00:00
|
|
|
unsigned int isBlocklistEnabled : 1;
|
2008-06-10 16:16:31 +00:00
|
|
|
unsigned int isProxyEnabled : 1;
|
|
|
|
unsigned int isProxyAuthEnabled : 1;
|
|
|
|
unsigned int isClosed : 1;
|
|
|
|
unsigned int useUploadLimit : 1;
|
|
|
|
unsigned int useDownloadLimit : 1;
|
2008-08-16 21:06:57 +00:00
|
|
|
unsigned int useLazyBitfield : 1;
|
2008-04-14 14:39:13 +00:00
|
|
|
|
|
|
|
tr_encryption_mode encryptionMode;
|
2008-04-05 16:49:26 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_event_handle * events;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-07-15 01:03:03 +00:00
|
|
|
int proxyPort;
|
2008-04-14 14:39:13 +00:00
|
|
|
int peerSocketTOS;
|
2007-08-18 03:02:32 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
int torrentCount;
|
|
|
|
tr_torrent * torrentList;
|
2008-04-12 00:29:49 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
char * tag;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
char * configDir;
|
2008-05-18 16:44:30 +00:00
|
|
|
char * downloadDir;
|
2008-04-14 14:39:13 +00:00
|
|
|
char * resumeDir;
|
2008-05-18 16:44:30 +00:00
|
|
|
char * torrentDir;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2008-06-11 20:45:53 +00:00
|
|
|
tr_proxy_type proxyType;
|
2008-06-10 16:16:31 +00:00
|
|
|
char * proxy;
|
|
|
|
char * proxyUsername;
|
|
|
|
char * proxyPassword;
|
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_ratecontrol * upload;
|
|
|
|
struct tr_ratecontrol * download;
|
2008-04-05 20:12:11 +00:00
|
|
|
|
2008-06-11 16:15:45 +00:00
|
|
|
struct tr_list * blocklists;
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_peerMgr * peerMgr;
|
|
|
|
struct tr_shared * shared;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_lock * lock;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
struct tr_web * web;
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
struct tr_rpc_server * rpcServer;
|
2008-05-19 00:12:31 +00:00
|
|
|
tr_rpc_func rpc_func;
|
|
|
|
void * rpc_func_user_data;
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_stats_handle * sessionStats;
|
|
|
|
struct tr_tracker_handle * tracker;
|
2007-02-06 04:26:40 +00:00
|
|
|
|
2008-04-14 14:39:13 +00:00
|
|
|
struct tr_metainfo_lookup * metainfoLookup;
|
|
|
|
int metainfoLookupCount;
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
const char * tr_sessionFindTorrentFile( const tr_session * session,
|
|
|
|
const char * hashString );
|
|
|
|
|
|
|
|
void tr_sessionSetTorrentFile( tr_session * session,
|
|
|
|
const char * hashString,
|
|
|
|
const char * filename );
|
|
|
|
|
2008-06-11 16:15:45 +00:00
|
|
|
struct in_addr;
|
|
|
|
|
|
|
|
int tr_sessionIsAddressBlocked( const tr_session * session,
|
|
|
|
const struct in_addr * addr );
|
|
|
|
|
|
|
|
|
2008-04-24 01:42:53 +00:00
|
|
|
void tr_globalLock ( tr_session * );
|
|
|
|
void tr_globalUnlock ( tr_session * );
|
|
|
|
int tr_globalIsLocked ( const tr_session * );
|
2007-10-01 15:17:15 +00:00
|
|
|
|
2008-05-22 23:11:21 +00:00
|
|
|
|
|
|
|
#define TR_ERROR_IS_IO(e) (TR_ERROR_IO_PARENT<=(e) && (e)<=TR_ERROR_IO_OTHER)
|
|
|
|
#define TR_ERROR_IS_TC(e) (TR_ERROR_TC_ERROR<=(e) && (e)<=TR_ERROR_TC_WARNING)
|
|
|
|
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|