mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
47 lines
1.8 KiB
C++
47 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <cstddef>
|
|
|
|
#include <llarp/util/types.hpp>
|
|
#include <llarp/util/time.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace path
|
|
{
|
|
/// maximum path length
|
|
constexpr std::size_t max_len = 8;
|
|
/// default path length
|
|
constexpr std::size_t default_len = 4;
|
|
/// pad messages to the nearest this many bytes
|
|
constexpr std::size_t pad_size = 128;
|
|
/// default path lifetime in ms
|
|
constexpr std::chrono::milliseconds default_lifetime = 20min;
|
|
/// minimum into lifetime we will advertise
|
|
constexpr std::chrono::milliseconds min_intro_lifetime = default_lifetime / 2;
|
|
/// number of slices of path lifetime to spread intros out via
|
|
constexpr auto intro_spread_slices = 4;
|
|
/// spacing frequency at which we try to build paths for introductions
|
|
constexpr std::chrono::milliseconds intro_path_spread = default_lifetime / intro_spread_slices;
|
|
/// how long away from expiration in millseconds do we consider an intro to become stale
|
|
constexpr std::chrono::milliseconds intro_stale_threshold =
|
|
default_lifetime - intro_path_spread;
|
|
/// Minimum paths to keep around for intros; mainly used at startup (the
|
|
/// spread, above, should be able to maintain more than this number of paths
|
|
/// normally once things are going).
|
|
constexpr std::size_t min_intro_paths = 4;
|
|
/// after this many ms a path build times out
|
|
constexpr auto build_timeout = 10s;
|
|
|
|
/// measure latency every this interval ms
|
|
constexpr auto latency_interval = 20s;
|
|
/// if a path is inactive for this amount of time it's dead
|
|
constexpr auto alive_timeout = latency_interval * 1.5;
|
|
|
|
/// how big transit hop traffic queues are
|
|
constexpr std::size_t transit_hop_queue_size = 256;
|
|
|
|
} // namespace path
|
|
} // namespace llarp
|