mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
835b334a59
* disallow inbound traffic on outbound utp link * const correctness
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 <stdlib.h>
|
|
|
|
constexpr size_t MAX_LINK_MSG_SIZE = 8192;
|
|
constexpr llarp_time_t DefaultLinkSessionLifetime = 60 * 1000;
|
|
constexpr size_t MaxSendQueueSize = 128;
|
|
#endif
|