transmission/libtransmission/torrent-magnet.h

39 lines
1.1 KiB
C
Raw Normal View History

// This file Copyright © 2012-2022 Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
2009-11-24 02:16:31 +00:00
#pragma once
2009-11-24 02:16:31 +00:00
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
2009-11-24 02:16:31 +00:00
#endif
#include <cstdint> // int64_t
#include <cstddef> // size_t
#include <ctime> // time_t
2009-11-24 02:16:31 +00:00
2022-01-11 14:28:14 +00:00
#include "transmission.h"
struct tr_torrent;
struct tr_torrent_metainfo;
// defined by BEP #9
inline constexpr int METADATA_PIECE_SIZE = 1024 * 16;
2009-11-24 02:16:31 +00:00
2022-01-17 18:39:50 +00:00
void* tr_torrentGetMetadataPiece(tr_torrent const* tor, int piece, size_t* len);
2009-11-24 02:16:31 +00:00
void tr_torrentSetMetadataPiece(tr_torrent* tor, int piece, void const* 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
bool tr_torrentSetMetadataSizeHint(tr_torrent* tor, int64_t metadata_size);
2009-11-24 17:10:40 +00:00
double tr_torrentGetMetadataPercent(tr_torrent const* tor);
bool tr_torrentUseMetainfoFromFile(
tr_torrent* tor,
tr_torrent_metainfo const* metainfo,
char const* filename,
tr_error** error);