2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2012-2023 Mnemosyne LLC.
|
2022-08-08 18:05:39 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// 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
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2009-11-24 02:16:31 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2009-11-24 02:16:31 +00:00
|
|
|
#endif
|
|
|
|
|
2021-12-16 09:43:51 +00:00
|
|
|
#include <cstddef> // size_t
|
2022-08-12 00:59:58 +00:00
|
|
|
#include <cstdint> // int64_t
|
2022-04-08 01:50:26 +00:00
|
|
|
#include <ctime> // time_t
|
2022-08-12 00:59:58 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <vector>
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-01-11 14:28:14 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
|
2021-12-16 09:43:51 +00:00
|
|
|
struct tr_torrent;
|
2022-06-21 21:47:57 +00:00
|
|
|
struct tr_torrent_metainfo;
|
2021-12-16 09:43:51 +00:00
|
|
|
|
2021-09-16 16:22:33 +00:00
|
|
|
// defined by BEP #9
|
|
|
|
inline constexpr int METADATA_PIECE_SIZE = 1024 * 16;
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
std::optional<std::vector<std::byte>> tr_torrentGetMetadataPiece(tr_torrent const* tor, int piece);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-10-29 00:12:37 +00:00
|
|
|
void tr_torrentSetMetadataPiece(tr_torrent* tor, int piece, void const* data, size_t len);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-08-14 19:41:57 +00:00
|
|
|
std::optional<int> tr_torrentGetNextMetadataRequest(tr_torrent* tor, time_t now);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
bool tr_torrentSetMetadataSizeHint(tr_torrent* tor, int64_t metadata_size);
|
2009-11-24 17:10:40 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
double tr_torrentGetMetadataPercent(tr_torrent const* tor);
|
2022-06-21 21:47:57 +00:00
|
|
|
|
2023-02-13 18:33:33 +00:00
|
|
|
void tr_torrentMagnetDoIdleWork(tr_torrent* tor);
|
|
|
|
|
2022-06-21 21:47:57 +00:00
|
|
|
bool tr_torrentUseMetainfoFromFile(
|
|
|
|
tr_torrent* tor,
|
|
|
|
tr_torrent_metainfo const* metainfo,
|
|
|
|
char const* filename,
|
|
|
|
tr_error** error);
|