mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
Move IWP code to its own directory
This commit is contained in:
parent
426a9b0df5
commit
561b997c93
@ -1 +1,2 @@
|
||||
build/
|
||||
.vscode/
|
||||
|
@ -166,9 +166,9 @@ set(LIB_SRC
|
||||
handlers/exit.cpp
|
||||
handlers/null.cpp
|
||||
handlers/tun.cpp
|
||||
link/iwp_linklayer.cpp
|
||||
link/iwp_outermessage.cpp
|
||||
link/iwp.cpp
|
||||
iwp/linklayer.cpp
|
||||
iwp/outermessage.cpp
|
||||
iwp/iwp.cpp
|
||||
link/server.cpp
|
||||
link/session.cpp
|
||||
messages/dht_immediate.cpp
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <link/iwp.hpp>
|
||||
#include <link/iwp_linklayer.hpp>
|
||||
#include <iwp/iwp.hpp>
|
||||
#include <iwp/linklayer.hpp>
|
||||
#include <router/abstractrouter.hpp>
|
||||
|
||||
namespace llarp
|
@ -1,5 +1,5 @@
|
||||
#ifndef LLARP_LINK_IWP_HPP
|
||||
#define LLARP_LINK_IWP_HPP
|
||||
#ifndef LLARP_IWP_HPP
|
||||
#define LLARP_IWP_HPP
|
||||
|
||||
#include <link/server.hpp>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <link/iwp_linklayer.hpp>
|
||||
#include <iwp/linklayer.hpp>
|
||||
|
||||
namespace llarp
|
||||
{
|
@ -1,12 +1,12 @@
|
||||
#ifndef LLARP_LINK_IWP_LINKLAYER_HPP
|
||||
#define LLARP_LINK_IWP_LINKLAYER_HPP
|
||||
#ifndef LLARP_IWP_LINKLAYER_HPP
|
||||
#define LLARP_IWP_LINKLAYER_HPP
|
||||
|
||||
#include <constants/link_layer.hpp>
|
||||
#include <crypto/crypto.hpp>
|
||||
#include <crypto/encrypted.hpp>
|
||||
#include <crypto/types.hpp>
|
||||
#include <link/server.hpp>
|
||||
#include <link/iwp_outermessage.hpp>
|
||||
#include <iwp/outermessage.hpp>
|
||||
|
||||
namespace llarp
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
#include <link/iwp_outermessage.hpp>
|
||||
#include <iwp/outermessage.hpp>
|
||||
|
||||
namespace llarp
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
#ifndef LLARP_LINK_IWP_OUTERMESSAGE_HPP
|
||||
#define LLARP_LINK_IWP_OUTERMESSAGE_HPP
|
||||
#ifndef LLARP_IWP_OUTERMESSAGE_HPP
|
||||
#define LLARP_IWP_OUTERMESSAGE_HPP
|
||||
|
||||
#include <crypto/types.hpp>
|
||||
#include <router_contact.hpp>
|
@ -6,7 +6,7 @@
|
||||
#include <crypto/crypto_libsodium.hpp>
|
||||
#include <dht/context.hpp>
|
||||
#include <dht/node.hpp>
|
||||
#include <link/iwp.hpp>
|
||||
#include <iwp/iwp.hpp>
|
||||
#include <link/server.hpp>
|
||||
#include <messages/link_message.hpp>
|
||||
#include <net/net.hpp>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <link/iwp.hpp>
|
||||
#include <ev/ev.h>
|
||||
#include <iwp/iwp.hpp>
|
||||
#include <messages/link_intro.hpp>
|
||||
#include <messages/discard.hpp>
|
||||
#include <utp/utp.hpp>
|
||||
|
Loading…
Reference in New Issue
Block a user