mirror of
https://github.com/transmission/transmission.git
synced 2026-02-15 07:26:49 +00:00
* build: bump to C++20 Co-authored-by: Cœur <coeur@gmx.fr> * refactor: use designated initializers * refactor: remove redundant SFINAE * fix: clang-tidy warnings * chore: comments about min compiler versions for C++20 features * build: clang objc++ modules build errors Co-authored-by: Dzmitry Neviadomski <nevack.d@gmail.com> * refactor: add `TR_CONSTEXPR_VEC` and `TR_CONSTEXPR_STR` * fix: don't use `std::rel_ops` * chore: housekeeping * fix: possible fix for macOS linker error --------- Co-authored-by: Cœur <coeur@gmx.fr> Co-authored-by: Dzmitry Neviadomski <nevack.d@gmail.com> Co-authored-by: Charles Kerr <charles@charleskerr.com>
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
// This file Copyright © Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstddef> // for std::byte
|
|
#include <cstdint> // for uint32_t
|
|
|
|
// ---
|
|
|
|
#if __cplusplus >= 202002L || _MSVC_LANG >= 202002L
|
|
#define TR_CONSTEXPR20 constexpr
|
|
#else
|
|
#define TR_CONSTEXPR20
|
|
#endif
|
|
|
|
#if __cpp_lib_constexpr_vector >= 201907L
|
|
#define TR_CONSTEXPR_VEC constexpr
|
|
#else
|
|
#define TR_CONSTEXPR_VEC
|
|
#endif
|
|
|
|
#if __cpp_lib_constexpr_string >= 201907L
|
|
#define TR_CONSTEXPR_STR constexpr
|
|
#else
|
|
#define TR_CONSTEXPR_STR
|
|
#endif
|
|
|
|
#if __cplusplus >= 202302L // _MSVC_LANG value for C++23 not available yet
|
|
#define TR_CONSTEXPR23 constexpr
|
|
#else
|
|
#define TR_CONSTEXPR23
|
|
#endif
|
|
|
|
// ---
|
|
|
|
#ifdef _WIN32
|
|
#define TR_IF_WIN32(ThenValue, ElseValue) ThenValue
|
|
#else
|
|
#define TR_IF_WIN32(ThenValue, ElseValue) ElseValue
|
|
#endif
|
|
|
|
#ifdef __UCLIBC__
|
|
#define TR_UCLIBC_CHECK_VERSION(major, minor, micro) \
|
|
(__UCLIBC_MAJOR__ > (major) || (__UCLIBC_MAJOR__ == (major) && __UCLIBC_MINOR__ > (minor)) || \
|
|
(__UCLIBC_MAJOR__ == (major) && __UCLIBC_MINOR__ == (minor) && __UCLIBC_SUBLEVEL__ >= (micro)))
|
|
#else
|
|
#define TR_UCLIBC_CHECK_VERSION(major, minor, micro) 0
|
|
#endif
|
|
|
|
// ---
|
|
|
|
inline auto constexpr TrInet6AddrStrlen = 46U;
|
|
|
|
inline auto constexpr TrAddrStrlen = 64U;
|
|
|
|
// https://www.bittorrent.org/beps/bep_0007.html
|
|
// "The client SHOULD include a key parameter in its announces. The key
|
|
// should remain the same for a particular infohash during a torrent
|
|
// session. Together with the peer_id this allows trackers to uniquely
|
|
// identify clients for the purpose of statistics-keeping when they
|
|
// announce from multiple IP.
|
|
// The key should be generated so it has at least 32bits worth of entropy."
|
|
//
|
|
// https://www.bittorrent.org/beps/bep_0015.html
|
|
// "Clients that resolve hostnames to v4 and v6 and then announce to both
|
|
// should use the same [32-bit integer] key for both so that trackers that
|
|
// care about accurate statistics-keeping can match the two announces."
|
|
using tr_announce_key_t = uint32_t;
|
|
|
|
// https://www.bittorrent.org/beps/bep_0003.html
|
|
// A string of length 20 which this downloader uses as its id. Each
|
|
// downloader generates its own id at random at the start of a new
|
|
// download. This value will also almost certainly have to be escaped.
|
|
using tr_peer_id_t = std::array<char, 20>;
|
|
|
|
using tr_sha1_digest_t = std::array<std::byte, 20>;
|
|
|
|
using tr_sha256_digest_t = std::array<std::byte, 32>;
|