mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
17 lines
374 B
C++
17 lines
374 B
C++
#ifndef LLARP_MESSAGES_HPP
|
|
#define LLARP_MESSAGES_HPP
|
|
|
|
/**
|
|
include shortcut for all link and routing messages
|
|
*/
|
|
|
|
#include <llarp/messages/dht_immediate.hpp>
|
|
#include <llarp/messages/link_intro.hpp>
|
|
#include <llarp/messages/relay.hpp>
|
|
#include <llarp/messages/relay_ack.hpp>
|
|
#include <llarp/messages/relay_commit.hpp>
|
|
|
|
#include <llarp/messages/path_confirm.hpp>
|
|
|
|
#endif
|