mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
632f4ee70b
- Local and Remote RC's now implemented with discrete functionalities and uses
16 lines
412 B
C++
16 lines
412 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
|
|
namespace llarp
|
|
{
|
|
// Given a full lokinet version of: lokinet-1.2.3-abc these are:
|
|
extern const std::array<uint16_t, 3> LOKINET_VERSION;
|
|
extern const char* const LOKINET_VERSION_TAG;
|
|
extern const char* const LOKINET_VERSION_FULL;
|
|
|
|
extern const char* const LOKINET_RELEASE_MOTTO;
|
|
extern const char* const LOKINET_DEFAULT_NETID;
|
|
} // namespace llarp
|