mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
4b9626bb83
1. add the option the code to be used under GPLv2 or GPLv3; previously only GPLv2 was allowed 2. add the "proxy option" as described in GPLv3 so we can add future licenses without having to bulk-edit everything again :) 3. remove the awkward "exception for MIT code in Mac client" clause; it was unnecessary and confusing.
35 lines
834 B
C
35 lines
834 B
C
/*
|
|
* This file Copyright (C) 2012-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU Public License v2 or v3 licenses,
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#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)
|
|
};
|
|
|
|
void* tr_torrentGetMetadataPiece (tr_torrent * tor, int piece, int * len);
|
|
|
|
void tr_torrentSetMetadataPiece (tr_torrent * tor, int piece, const void * data, int len);
|
|
|
|
bool tr_torrentGetNextMetadataRequest (tr_torrent * tor, time_t now, int * setme);
|
|
|
|
void tr_torrentSetMetadataSizeHint (tr_torrent * tor, int metadata_size);
|
|
|
|
double tr_torrentGetMetadataPercent (const tr_torrent * tor);
|
|
|
|
#endif
|