108 lines
2.9 KiB
C
108 lines
2.9 KiB
C
/*
|
|
* This file Copyright (C) 2009-2010 Mnemosyne LLC
|
|
*
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
* This exemption does not extend to derived works not owned by
|
|
* the Transmission project.
|
|
*
|
|
* $Id:$
|
|
*/
|
|
|
|
#ifndef __TRANSMISSION__
|
|
#error only libtransmission should #include this header.
|
|
#endif
|
|
|
|
#ifndef _TR_ANNOUNCER_H_
|
|
#define _TR_ANNOUNCER_H_
|
|
|
|
#include "transmission.h"
|
|
|
|
struct tr_announcer;
|
|
struct tr_torrent_tiers;
|
|
|
|
/**
|
|
* *** Tracker Publish / Subscribe
|
|
* **/
|
|
|
|
typedef enum
|
|
{
|
|
TR_TRACKER_WARNING,
|
|
TR_TRACKER_ERROR,
|
|
TR_TRACKER_ERROR_CLEAR,
|
|
TR_TRACKER_PEERS
|
|
}
|
|
TrackerEventType;
|
|
|
|
/** @brief Notification object to tell listeners about announce or scrape occurences */
|
|
typedef struct
|
|
{
|
|
/* what type of event this is */
|
|
TrackerEventType messageType;
|
|
|
|
/* for TR_TRACKER_WARNING and TR_TRACKER_ERROR */
|
|
const char * text;
|
|
const char * tracker;
|
|
|
|
/* for TR_TRACKER_PEERS */
|
|
const uint8_t * compact;
|
|
int compactLen;
|
|
|
|
/* [0...100] for probability a peer is a seed. calculated by the leecher/seeder ratio */
|
|
int8_t seedProbability;
|
|
}
|
|
tr_tracker_event;
|
|
|
|
typedef void tr_tracker_callback ( tr_torrent * tor,
|
|
const tr_tracker_event * event,
|
|
void * client_data );
|
|
|
|
/**
|
|
*** Session ctor/dtor
|
|
**/
|
|
|
|
void tr_announcerInit( tr_session * );
|
|
|
|
void tr_announcerClose( tr_session * );
|
|
|
|
/**
|
|
*** For torrent customers
|
|
**/
|
|
|
|
struct tr_torrent_tiers * tr_announcerAddTorrent( struct tr_announcer *,
|
|
tr_torrent * torrent,
|
|
tr_tracker_callback * cb,
|
|
void * cbdata );
|
|
|
|
tr_bool tr_announcerHasBacklog( const struct tr_announcer * );
|
|
|
|
void tr_announcerResetTorrent( struct tr_announcer*, tr_torrent* );
|
|
|
|
void tr_announcerRemoveTorrent( struct tr_announcer * ,
|
|
tr_torrent * );
|
|
|
|
void tr_announcerChangeMyPort( tr_torrent * );
|
|
|
|
tr_bool tr_announcerCanManualAnnounce( const tr_torrent * );
|
|
|
|
void tr_announcerManualAnnounce( tr_torrent * );
|
|
|
|
void tr_announcerTorrentStarted( tr_torrent * );
|
|
void tr_announcerTorrentStopped( tr_torrent * );
|
|
void tr_announcerTorrentCompleted( tr_torrent * );
|
|
|
|
enum { TR_ANN_UP, TR_ANN_DOWN, TR_ANN_CORRUPT };
|
|
void tr_announcerAddBytes( tr_torrent *, int up_down_or_corrupt, uint32_t byteCount );
|
|
|
|
time_t tr_announcerNextManualAnnounce( const tr_torrent * );
|
|
|
|
tr_tracker_stat * tr_announcerStats( const tr_torrent * torrent,
|
|
int * setmeTrackerCount );
|
|
|
|
void tr_announcerStatsFree( tr_tracker_stat * trackers,
|
|
int trackerCount );
|
|
|
|
|
|
#endif /* _TR_ANNOUNCER_H_ */
|