mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
11 lines
291 B
C++
11 lines
291 B
C++
#ifndef LLARP_LINK_LAYER_HPP
|
|
#define LLARP_LINK_LAYER_HPP
|
|
#include <util/types.hpp>
|
|
|
|
#include <cstdlib>
|
|
|
|
constexpr size_t MAX_LINK_MSG_SIZE = 8192;
|
|
constexpr llarp_time_t DefaultLinkSessionLifetime = 60 * 1000;
|
|
constexpr size_t MaxSendQueueSize = 1024;
|
|
#endif
|