2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2006-2023 Transmission authors and contributors.
|
2022-01-20 18:27:56 +00:00
|
|
|
// This file is licensed under the MIT (SPDX: MIT) license,
|
|
|
|
// A copy of this license can be found in licenses/ .
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2022-10-24 18:40:12 +00:00
|
|
|
#include <algorithm> // for std::copy_n
|
2022-11-02 00:32:26 +00:00
|
|
|
#include <array>
|
2021-12-15 21:25:42 +00:00
|
|
|
#include <cstddef> // size_t
|
2022-02-10 21:35:28 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
2021-11-15 23:03:55 +00:00
|
|
|
#include <string_view>
|
2022-04-21 15:58:13 +00:00
|
|
|
#include <utility> // std::pair
|
2021-11-15 23:03:55 +00:00
|
|
|
|
2014-07-04 00:00:07 +00:00
|
|
|
#ifdef _WIN32
|
2017-04-19 12:04:45 +00:00
|
|
|
#include <ws2tcpip.h>
|
2007-07-31 14:26:44 +00:00
|
|
|
#else
|
2022-08-17 16:08:36 +00:00
|
|
|
#include <cerrno>
|
2017-04-19 12:04:45 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2022-09-21 18:25:53 +00:00
|
|
|
#include <arpa/inet.h>
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-04 00:00:07 +00:00
|
|
|
#ifdef _WIN32
|
2021-10-06 14:26:07 +00:00
|
|
|
using tr_socket_t = SOCKET;
|
2017-04-19 12:04:45 +00:00
|
|
|
#define TR_BAD_SOCKET INVALID_SOCKET
|
|
|
|
|
|
|
|
#undef EADDRINUSE
|
|
|
|
#define EADDRINUSE WSAEADDRINUSE
|
|
|
|
#undef ECONNREFUSED
|
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#undef ECONNRESET
|
|
|
|
#define ECONNRESET WSAECONNRESET
|
|
|
|
#undef EHOSTUNREACH
|
|
|
|
#define EHOSTUNREACH WSAEHOSTUNREACH
|
|
|
|
#undef EINPROGRESS
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
#undef ENOTCONN
|
|
|
|
#define ENOTCONN WSAENOTCONN
|
|
|
|
#undef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK WSAEWOULDBLOCK
|
|
|
|
#undef EAFNOSUPPORT
|
|
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
|
|
#undef ENETUNREACH
|
|
|
|
#define ENETUNREACH WSAENETUNREACH
|
|
|
|
|
|
|
|
#define sockerrno WSAGetLastError()
|
2007-07-31 16:55:47 +00:00
|
|
|
#else
|
2017-04-19 12:04:45 +00:00
|
|
|
/** @brief Platform-specific socket descriptor type. */
|
2021-10-06 14:26:07 +00:00
|
|
|
using tr_socket_t = int;
|
2017-04-19 12:04:45 +00:00
|
|
|
/** @brief Platform-specific invalid socket descriptor constant. */
|
|
|
|
#define TR_BAD_SOCKET (-1)
|
2015-03-18 07:34:26 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
#define sockerrno errno
|
2007-07-31 16:55:47 +00:00
|
|
|
#endif
|
|
|
|
|
2022-04-21 15:58:13 +00:00
|
|
|
/**
|
|
|
|
* Literally just a port number.
|
|
|
|
*
|
|
|
|
* Exists so that you never have to wonder what byte order a port variable is in.
|
|
|
|
*/
|
|
|
|
class tr_port
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
tr_port() noexcept = default;
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr static tr_port fromHost(uint16_t hport) noexcept
|
|
|
|
{
|
|
|
|
return tr_port{ hport };
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] static tr_port fromNetwork(uint16_t nport) noexcept
|
|
|
|
{
|
|
|
|
return tr_port{ ntohs(nport) };
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr uint16_t host() const noexcept
|
|
|
|
{
|
|
|
|
return hport_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] uint16_t network() const noexcept
|
|
|
|
{
|
|
|
|
return htons(hport_);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr void setHost(uint16_t hport) noexcept
|
|
|
|
{
|
|
|
|
hport_ = hport;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setNetwork(uint16_t nport) noexcept
|
|
|
|
{
|
|
|
|
hport_ = ntohs(nport);
|
|
|
|
}
|
|
|
|
|
2022-10-24 18:40:12 +00:00
|
|
|
[[nodiscard]] static std::pair<tr_port, std::byte const*> fromCompact(std::byte const* compact) noexcept;
|
2022-04-21 15:58:13 +00:00
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto operator<(tr_port const& that) const noexcept
|
|
|
|
{
|
|
|
|
return hport_ < that.hport_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto operator==(tr_port const& that) const noexcept
|
|
|
|
{
|
|
|
|
return hport_ == that.hport_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto operator!=(tr_port const& that) const noexcept
|
|
|
|
{
|
|
|
|
return hport_ != that.hport_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto empty() const noexcept
|
|
|
|
{
|
|
|
|
return hport_ == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr void clear() noexcept
|
|
|
|
{
|
|
|
|
hport_ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2022-10-25 03:13:09 +00:00
|
|
|
explicit constexpr tr_port(uint16_t hport) noexcept
|
2022-04-21 15:58:13 +00:00
|
|
|
: hport_{ hport }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t hport_ = 0;
|
|
|
|
};
|
|
|
|
|
2022-12-23 16:56:27 +00:00
|
|
|
enum tr_address_type
|
|
|
|
{
|
|
|
|
TR_AF_INET,
|
|
|
|
TR_AF_INET6,
|
|
|
|
NUM_TR_AF_INET_TYPES
|
|
|
|
};
|
|
|
|
|
2021-10-06 14:26:07 +00:00
|
|
|
struct tr_address
|
2008-12-17 01:39:24 +00:00
|
|
|
{
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] static std::optional<tr_address> from_string(std::string_view address_sv);
|
|
|
|
[[nodiscard]] static std::optional<std::pair<tr_address, tr_port>> from_sockaddr(struct sockaddr const*);
|
|
|
|
[[nodiscard]] static std::pair<tr_address, std::byte const*> from_compact_ipv4(std::byte const* compact) noexcept;
|
|
|
|
[[nodiscard]] static std::pair<tr_address, std::byte const*> from_compact_ipv6(std::byte const* compact) noexcept;
|
2022-02-24 13:59:58 +00:00
|
|
|
|
2022-12-08 22:44:19 +00:00
|
|
|
// write the text form of the address, e.g. inet_ntop()
|
2022-04-21 23:37:02 +00:00
|
|
|
template<typename OutputIt>
|
2022-12-08 22:44:19 +00:00
|
|
|
OutputIt display_name(OutputIt out, tr_port port = {}) const;
|
|
|
|
std::string_view display_name(char* out, size_t outlen, tr_port port = {}) const;
|
|
|
|
[[nodiscard]] std::string display_name(tr_port port = {}) const;
|
2022-04-21 23:37:02 +00:00
|
|
|
|
2023-01-01 18:20:46 +00:00
|
|
|
///
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto is_ipv4() const noexcept
|
|
|
|
{
|
|
|
|
return type == TR_AF_INET;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto is_ipv6() const noexcept
|
|
|
|
{
|
|
|
|
return type == TR_AF_INET6;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// bt protocol compact form
|
|
|
|
|
|
|
|
// compact addr only -- used e.g. as `yourip` value in extension protocol handshake
|
|
|
|
|
2022-10-24 18:40:12 +00:00
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
static OutputIt to_compact_ipv4(OutputIt out, in_addr const* addr4)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return std::copy_n(reinterpret_cast<std::byte const*>(addr4), sizeof(*addr4), out);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
static OutputIt to_compact_ipv6(OutputIt out, in6_addr const* addr6)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return std::copy_n(reinterpret_cast<std::byte const*>(addr6), sizeof(*addr6), out);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
OutputIt to_compact(OutputIt out) const
|
|
|
|
{
|
|
|
|
return is_ipv4() ? to_compact_ipv4(out, &this->addr.addr4) : to_compact_ipv6(out, &this->addr.addr6);
|
|
|
|
}
|
|
|
|
|
|
|
|
// compact addr + port -- very common format used for peer exchange, dht, tracker announce responses
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
|
|
|
static OutputIt to_compact_ipv4(OutputIt out, in_addr const* addr4, tr_port port)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
out = tr_address::to_compact_ipv4(out, addr4);
|
|
|
|
|
2022-10-24 18:40:12 +00:00
|
|
|
auto const nport = port.network();
|
2023-01-01 18:20:46 +00:00
|
|
|
return std::copy_n(reinterpret_cast<std::byte const*>(&nport), sizeof(nport), out);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
static OutputIt to_compact_ipv6(OutputIt out, in6_addr const* addr6, tr_port port)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
out = tr_address::to_compact_ipv6(out, addr6);
|
|
|
|
|
|
|
|
auto const nport = port.network();
|
|
|
|
return std::copy_n(reinterpret_cast<std::byte const*>(&nport), sizeof(nport), out);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2022-12-09 02:27:52 +00:00
|
|
|
OutputIt to_compact_ipv4(OutputIt out, tr_port port) const
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2022-12-09 02:27:52 +00:00
|
|
|
return to_compact_ipv4(out, &this->addr.addr4, port);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2022-12-09 02:27:52 +00:00
|
|
|
OutputIt to_compact_ipv6(OutputIt out, tr_port port) const
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2022-12-09 02:27:52 +00:00
|
|
|
return to_compact_ipv6(out, &this->addr.addr6, port);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
OutputIt to_compact(OutputIt out, tr_port port)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return is_ipv4() ? to_compact_4(out, &this->addr.addr4, port) : to_compact_ipv6(out, &this->addr.addr6, port);
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
2023-01-01 18:20:46 +00:00
|
|
|
// compact sockaddr helpers
|
|
|
|
|
2022-10-24 18:40:12 +00:00
|
|
|
template<typename OutputIt>
|
2023-01-01 18:20:46 +00:00
|
|
|
static OutputIt to_compact_ipv4(OutputIt out, sockaddr_in const* sa4)
|
2022-10-24 18:40:12 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return to_compact_ipv4(out, &sa4->sin_addr, tr_port::fromNetwork(sa4->sin_port));
|
2022-10-24 18:40:12 +00:00
|
|
|
}
|
|
|
|
|
2023-01-01 18:20:46 +00:00
|
|
|
template<typename OutputIt>
|
|
|
|
static OutputIt to_compact_ipv6(OutputIt out, sockaddr_in6 const* sa6)
|
2022-07-10 01:03:40 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return to_compact_ipv6(out, &sa6->sin6_addr, tr_port::fromNetwork(sa6->sin6_port));
|
2022-07-10 01:03:40 +00:00
|
|
|
}
|
2022-04-21 23:37:02 +00:00
|
|
|
|
2023-01-01 18:20:46 +00:00
|
|
|
template<typename OutputIt>
|
|
|
|
static OutputIt to_compact(OutputIt out, sockaddr const* saddr)
|
2022-07-10 01:03:40 +00:00
|
|
|
{
|
2023-01-01 18:20:46 +00:00
|
|
|
return saddr->sa_family == AF_INET ? to_compact_ipv4(out, reinterpret_cast<sockaddr_in const*>(saddr)) :
|
|
|
|
to_compact_ipv6(out, reinterpret_cast<sockaddr_in6 const*>(saddr));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename OutputIt>
|
|
|
|
static OutputIt to_compact(OutputIt out, struct sockaddr_storage* ss)
|
|
|
|
{
|
|
|
|
return to_compact(out, reinterpret_cast<struct sockaddr*>(ss));
|
2022-07-10 01:03:40 +00:00
|
|
|
}
|
2022-04-21 23:37:02 +00:00
|
|
|
|
|
|
|
// comparisons
|
|
|
|
|
|
|
|
[[nodiscard]] int compare(tr_address const& that) const noexcept;
|
2022-02-24 13:59:58 +00:00
|
|
|
|
2022-04-02 00:48:09 +00:00
|
|
|
[[nodiscard]] bool operator==(tr_address const& that) const noexcept
|
2022-02-24 13:59:58 +00:00
|
|
|
{
|
2022-04-21 23:37:02 +00:00
|
|
|
return this->compare(that) == 0;
|
2022-02-24 13:59:58 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 00:48:09 +00:00
|
|
|
[[nodiscard]] bool operator<(tr_address const& that) const noexcept
|
2022-02-24 13:59:58 +00:00
|
|
|
{
|
2022-04-21 23:37:02 +00:00
|
|
|
return this->compare(that) < 0;
|
2022-02-26 06:03:32 +00:00
|
|
|
}
|
|
|
|
|
2022-11-03 20:46:27 +00:00
|
|
|
[[nodiscard]] bool operator<=(tr_address const& that) const noexcept
|
|
|
|
{
|
|
|
|
return this->compare(that) <= 0;
|
|
|
|
}
|
|
|
|
|
2022-04-02 00:48:09 +00:00
|
|
|
[[nodiscard]] bool operator>(tr_address const& that) const noexcept
|
2022-02-26 06:03:32 +00:00
|
|
|
{
|
2022-04-21 23:37:02 +00:00
|
|
|
return this->compare(that) > 0;
|
2022-02-24 13:59:58 +00:00
|
|
|
}
|
2022-04-21 22:06:00 +00:00
|
|
|
|
2022-10-04 19:52:51 +00:00
|
|
|
//
|
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] std::pair<sockaddr_storage, socklen_t> to_sockaddr(tr_port port) const noexcept;
|
2022-10-04 19:52:51 +00:00
|
|
|
|
2022-12-25 00:53:50 +00:00
|
|
|
[[nodiscard]] bool is_global_unicast_address() const noexcept;
|
|
|
|
|
2022-04-21 22:06:00 +00:00
|
|
|
tr_address_type type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct in6_addr addr6;
|
|
|
|
struct in_addr addr4;
|
|
|
|
} addr;
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] static auto constexpr any_ipv4() noexcept
|
2022-11-06 16:35:48 +00:00
|
|
|
{
|
|
|
|
return tr_address{ TR_AF_INET, { { { { INADDR_ANY } } } } };
|
|
|
|
}
|
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] static auto constexpr any_ipv6() noexcept
|
2022-11-06 16:35:48 +00:00
|
|
|
{
|
|
|
|
return tr_address{ TR_AF_INET6, { IN6ADDR_ANY_INIT } };
|
|
|
|
}
|
2008-12-15 00:17:08 +00:00
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] constexpr auto is_valid() const noexcept
|
|
|
|
{
|
|
|
|
return type == TR_AF_INET || type == TR_AF_INET6;
|
|
|
|
}
|
2022-07-09 23:44:20 +00:00
|
|
|
|
2023-04-16 00:30:20 +00:00
|
|
|
[[nodiscard]] auto is_any() const noexcept
|
|
|
|
{
|
|
|
|
return *this == (is_ipv4() ? any_ipv4() : any_ipv6());
|
|
|
|
}
|
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] bool is_valid_for_peers(tr_port port) const noexcept;
|
|
|
|
};
|
2008-12-18 05:55:22 +00:00
|
|
|
|
2023-01-22 19:21:30 +00:00
|
|
|
// --- Sockets
|
2011-03-25 05:34:26 +00:00
|
|
|
|
|
|
|
struct tr_session;
|
|
|
|
|
2022-11-06 16:35:48 +00:00
|
|
|
tr_socket_t tr_netBindTCP(tr_address const& addr, tr_port port, bool suppress_msgs);
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2022-10-14 06:20:39 +00:00
|
|
|
[[nodiscard]] std::optional<std::tuple<tr_address, tr_port, tr_socket_t>> tr_netAccept(
|
|
|
|
tr_session* session,
|
|
|
|
tr_socket_t listening_sockfd);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void tr_netSetCongestionControl(tr_socket_t s, char const* algorithm);
|
2010-04-22 01:49:16 +00:00
|
|
|
|
2023-01-04 21:37:55 +00:00
|
|
|
void tr_net_close_socket(tr_socket_t fd);
|
2011-03-25 05:34:26 +00:00
|
|
|
|
2023-01-07 14:27:54 +00:00
|
|
|
// --- TOS / DSCP
|
2022-02-10 21:35:28 +00:00
|
|
|
|
2022-11-02 00:32:26 +00:00
|
|
|
/**
|
2023-01-23 16:26:11 +00:00
|
|
|
* A `toString()` / `from_string()` convenience wrapper around the TOS int value
|
2022-11-02 00:32:26 +00:00
|
|
|
*/
|
|
|
|
class tr_tos_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr tr_tos_t() = default;
|
|
|
|
|
|
|
|
constexpr explicit tr_tos_t(int value)
|
|
|
|
: value_{ value }
|
|
|
|
{
|
|
|
|
}
|
2022-02-10 21:35:28 +00:00
|
|
|
|
2022-11-02 00:32:26 +00:00
|
|
|
[[nodiscard]] constexpr operator int() const noexcept
|
|
|
|
{
|
|
|
|
return value_;
|
|
|
|
}
|
|
|
|
|
2022-12-09 02:27:52 +00:00
|
|
|
[[nodiscard]] static std::optional<tr_tos_t> from_string(std::string_view);
|
2022-11-02 00:32:26 +00:00
|
|
|
|
|
|
|
[[nodiscard]] std::string toString() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
int value_ = 0x04;
|
|
|
|
|
|
|
|
// RFCs 2474, 3246, 4594 & 8622
|
|
|
|
// Service class names are defined in RFC 4594, RFC 5865, and RFC 8622.
|
|
|
|
// Not all platforms have these IPTOS_ definitions, so hardcode them here
|
|
|
|
static auto constexpr Names = std::array<std::pair<int, std::string_view>, 28>{ {
|
|
|
|
{ 0x00, "cs0" }, // IPTOS_CLASS_CS0
|
|
|
|
{ 0x04, "le" },
|
|
|
|
{ 0x20, "cs1" }, // IPTOS_CLASS_CS1
|
|
|
|
{ 0x28, "af11" }, // IPTOS_DSCP_AF11
|
|
|
|
{ 0x30, "af12" }, // IPTOS_DSCP_AF12
|
|
|
|
{ 0x38, "af13" }, // IPTOS_DSCP_AF13
|
|
|
|
{ 0x40, "cs2" }, // IPTOS_CLASS_CS2
|
|
|
|
{ 0x48, "af21" }, // IPTOS_DSCP_AF21
|
|
|
|
{ 0x50, "af22" }, // IPTOS_DSCP_AF22
|
|
|
|
{ 0x58, "af23" }, // IPTOS_DSCP_AF23
|
|
|
|
{ 0x60, "cs3" }, // IPTOS_CLASS_CS3
|
|
|
|
{ 0x68, "af31" }, // IPTOS_DSCP_AF31
|
|
|
|
{ 0x70, "af32" }, // IPTOS_DSCP_AF32
|
|
|
|
{ 0x78, "af33" }, // IPTOS_DSCP_AF33
|
|
|
|
{ 0x80, "cs4" }, // IPTOS_CLASS_CS4
|
|
|
|
{ 0x88, "af41" }, // IPTOS_DSCP_AF41
|
|
|
|
{ 0x90, "af42" }, // IPTOS_DSCP_AF42
|
|
|
|
{ 0x98, "af43" }, // IPTOS_DSCP_AF43
|
|
|
|
{ 0xa0, "cs5" }, // IPTOS_CLASS_CS5
|
|
|
|
{ 0xb8, "ef" }, // IPTOS_DSCP_EF
|
|
|
|
{ 0xc0, "cs6" }, // IPTOS_CLASS_CS6
|
|
|
|
{ 0xe0, "cs7" }, // IPTOS_CLASS_CS7
|
|
|
|
|
|
|
|
// <netinet/ip.h> lists these TOS names as deprecated,
|
|
|
|
// but keep them defined here for backward compatibility
|
|
|
|
{ 0x00, "routine" }, // IPTOS_PREC_ROUTINE
|
|
|
|
{ 0x02, "lowcost" }, // IPTOS_LOWCOST
|
|
|
|
{ 0x02, "mincost" }, // IPTOS_MINCOST
|
|
|
|
{ 0x04, "reliable" }, // IPTOS_RELIABILITY
|
|
|
|
{ 0x08, "throughput" }, // IPTOS_THROUGHPUT
|
|
|
|
{ 0x10, "lowdelay" }, // IPTOS_LOWDELAY
|
|
|
|
} };
|
|
|
|
};
|
2022-02-10 21:35:28 +00:00
|
|
|
|
|
|
|
// set the IPTOS_ value for the specified socket
|
|
|
|
void tr_netSetTOS(tr_socket_t sock, int tos, tr_address_type type);
|
|
|
|
|
2010-06-30 21:24:36 +00:00
|
|
|
/**
|
|
|
|
* @brief get a human-representable string representing the network error.
|
|
|
|
* @param err an errno on Unix/Linux and an WSAError on win32)
|
|
|
|
*/
|
2022-09-09 02:49:51 +00:00
|
|
|
[[nodiscard]] std::string tr_net_strerror(int err);
|