2019-06-17 23:19:39 +00:00
|
|
|
#ifndef LLARP_CONSTANTS_PATH_HPP
|
|
|
|
#define LLARP_CONSTANTS_PATH_HPP
|
|
|
|
|
2020-02-25 20:52:59 +00:00
|
|
|
#include <chrono>
|
2019-06-17 23:19:39 +00:00
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
#include <util/types.hpp>
|
2020-02-24 19:40:45 +00:00
|
|
|
#include <util/time.hpp>
|
2019-06-17 23:19:39 +00:00
|
|
|
|
|
|
|
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
|
2020-03-01 16:40:15 +00:00
|
|
|
constexpr std::chrono::milliseconds default_lifetime = 20min;
|
2020-02-25 20:52:59 +00:00
|
|
|
/// minimum into lifetime we will advertise
|
2020-04-07 18:38:56 +00:00
|
|
|
constexpr std::chrono::milliseconds min_intro_lifetime = default_lifetime / 2;
|
2020-02-25 20:52:59 +00:00
|
|
|
/// spacing frequency at which we try to build paths for introductions
|
2020-04-07 18:38:56 +00:00
|
|
|
constexpr std::chrono::milliseconds intro_path_spread = default_lifetime / 5;
|
2020-03-01 16:33:45 +00:00
|
|
|
/// 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;
|
2019-06-17 23:19:39 +00:00
|
|
|
/// after this many ms a path build times out
|
2020-03-01 16:40:15 +00:00
|
|
|
constexpr auto build_timeout = 30s;
|
2019-06-17 23:19:39 +00:00
|
|
|
|
|
|
|
/// measure latency every this interval ms
|
2020-03-01 16:40:15 +00:00
|
|
|
constexpr auto latency_interval = 5s;
|
2019-06-17 23:19:39 +00:00
|
|
|
/// if a path is inactive for this amount of time it's dead
|
2020-03-01 16:40:15 +00:00
|
|
|
constexpr auto alive_timeout = 30s;
|
2019-06-17 23:19:39 +00:00
|
|
|
} // namespace path
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|