transmission/libtransmission/torrent-magnet.h

39 lines
1003 B
C
Raw Normal View History

2009-11-24 02:16:31 +00:00
/*
* This file Copyright (C) Mnemosyne LLC
2009-11-24 02:16:31 +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)
2009-11-24 02:16:31 +00:00
* 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$
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 */
METADATA_PIECE_SIZE = (1024 * 16)
2009-11-24 02:16:31 +00:00
};
void* tr_torrentGetMetadataPiece (tr_torrent * tor, int piece, int * len);
2009-11-24 02:16:31 +00:00
void tr_torrentSetMetadataPiece (tr_torrent * tor, int piece, const void * data, int len);
2009-11-24 02:16:31 +00:00
bool tr_torrentGetNextMetadataRequest (tr_torrent * tor, time_t now, int * setme);
2009-11-24 02:16:31 +00:00
void tr_torrentSetMetadataSizeHint (tr_torrent * tor, int metadata_size);
2009-11-24 02:16:31 +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