lokinet/llarp/constants/link_layer.hpp

11 lines
291 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>
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
constexpr size_t MAX_LINK_MSG_SIZE = 8192;
2019-03-04 16:04:08 +00:00
constexpr llarp_time_t DefaultLinkSessionLifetime = 60 * 1000;
constexpr size_t MaxSendQueueSize = 1024;
2018-12-12 01:32:10 +00:00
#endif