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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#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
|
|
|
|
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-01-14 12:00:21 +00:00
|
|
|
typedef enum { TR_NET_OK, TR_NET_ERROR, TR_NET_WAIT } tr_tristate_t;
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif
|
2007-07-31 14:26:44 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
int tr_trackerInfoInit( struct tr_tracker_info * info,
|
|
|
|
const char * address,
|
|
|
|
int address_len );
|
2007-08-14 15:24:48 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_trackerInfoClear( struct tr_tracker_info * info );
|
2007-07-31 14:26:44 +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
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_handle
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_encryption_mode encryptionMode;
|
|
|
|
|
|
|
|
struct tr_event_handle * events;
|
2007-08-18 03:02:32 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
int torrentCount;
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_torrent * torrentList;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
char * tag;
|
2007-12-24 05:03:40 +00:00
|
|
|
unsigned int isPortSet : 1;
|
|
|
|
unsigned int isPexEnabled : 1;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
char useUploadLimit;
|
|
|
|
char useDownloadLimit;
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_ratecontrol * upload;
|
|
|
|
struct tr_ratecontrol * download;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_peerMgr * peerMgr;
|
|
|
|
struct tr_shared * shared;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-01 15:17:15 +00:00
|
|
|
struct tr_lock * lock;
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_handle_status stats[2];
|
2007-08-16 20:00:06 +00:00
|
|
|
int statCur;
|
2007-02-06 04:26:40 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
uint8_t isClosed;
|
2007-11-21 20:03:53 +00:00
|
|
|
|
2007-11-26 18:55:36 +00:00
|
|
|
struct tr_stats_handle * sessionStats;
|
2007-11-29 00:43:58 +00:00
|
|
|
struct tr_tracker_handle * tracker;
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
2007-10-01 15:17:15 +00:00
|
|
|
void tr_globalLock ( struct tr_handle * );
|
|
|
|
void tr_globalUnlock ( struct tr_handle * );
|
|
|
|
int tr_globalIsLocked ( const struct tr_handle * );
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|