mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
16 lines
371 B
C++
16 lines
371 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_commit.hpp>
|
|
#include <llarp/messages/discard.hpp>
|
|
#include <llarp/messages/path_confirm.hpp>
|
|
|
|
#endif
|