2009-11-24 02:16:31 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2012-2014 Mnemosyne LLC
|
2009-11-24 02:16:31 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-11-24 02:16:31 +00:00
|
|
|
*
|
2010-10-01 13:33:39 +00:00
|
|
|
* $Id$
|
2009-11-24 02:16:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef TR_TORRENT_MAGNET_H
|
|
|
|
#define TR_TORRENT_MAGNET_H 1
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* defined by BEP #9 */
|
2012-12-05 17:29:46 +00:00
|
|
|
METADATA_PIECE_SIZE = (1024 * 16)
|
2009-11-24 02:16:31 +00:00
|
|
|
};
|
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void* tr_torrentGetMetadataPiece (tr_torrent * tor, int piece, int * len);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_torrentSetMetadataPiece (tr_torrent * tor, int piece, const void * data, int len);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
bool tr_torrentGetNextMetadataRequest (tr_torrent * tor, time_t now, int * setme);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_torrentSetMetadataSizeHint (tr_torrent * tor, int metadata_size);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
double tr_torrentGetMetadataPercent (const tr_torrent * tor);
|
2009-11-24 17:10:40 +00:00
|
|
|
|
2009-11-24 02:16:31 +00:00
|
|
|
#endif
|