llarp/constants/link_layer.hpp

Namespaces

Name
llarp
[crypto.hpp]
llarp::constants

Attributes

Name
constexpr size_t MAX_LINK_MSG_SIZE
constexpr auto DefaultLinkSessionLifetime
constexpr size_t MaxSendQueueSize
constexpr auto LinkLayerConnectTimeout

Attributes Documentation

constexpr size_t MAX_LINK_MSG_SIZE = 8192;

variable DefaultLinkSessionLifetime

static constexpr auto DefaultLinkSessionLifetime = 5min;

variable MaxSendQueueSize

constexpr size_t MaxSendQueueSize = 1024 * 16;

variable LinkLayerConnectTimeout

static constexpr auto LinkLayerConnectTimeout = 5s;

Source code

#pragma once
#include <llarp/util/types.hpp>
#include <llarp/util/time.hpp>

#include <cstdlib>

constexpr size_t MAX_LINK_MSG_SIZE = 8192;
static constexpr auto DefaultLinkSessionLifetime = 5min;
constexpr size_t MaxSendQueueSize = 1024 * 16;
static constexpr auto LinkLayerConnectTimeout = 5s;

namespace llarp::constants
{
  static constexpr auto DefaultInboundIWPPort = uint16_t{1090};
}

Updated on 2026-01-10 at 22:49:45 +0000