lokinet/llarp/constants/link_layer.hpp

12 lines
308 B
C++
Raw Normal View History

2018-12-12 01:32:10 +00:00
#ifndef LLARP_LINK_LAYER_HPP
#define LLARP_LINK_LAYER_HPP
#include <util/types.hpp>
2020-02-24 19:40:45 +00:00
#include <util/time.hpp>
2018-12-12 01:32:10 +00:00
2019-07-30 23:42:13 +00:00
#include <cstdlib>
2018-12-12 01:32:10 +00:00
2020-02-24 19:40:45 +00:00
constexpr size_t MAX_LINK_MSG_SIZE = 8192;
static constexpr auto DefaultLinkSessionLifetime = 1min;
constexpr size_t MaxSendQueueSize = 1024;
2018-12-12 01:32:10 +00:00
#endif