Move IWP code to its own directory

pull/467/head
Michael 5 years ago
parent 426a9b0df5
commit 561b997c93
No known key found for this signature in database
GPG Key ID: 2D51757B47E2434C

@ -1 +1,2 @@
build/ build/
.vscode/

@ -166,9 +166,9 @@ set(LIB_SRC
handlers/exit.cpp handlers/exit.cpp
handlers/null.cpp handlers/null.cpp
handlers/tun.cpp handlers/tun.cpp
link/iwp_linklayer.cpp iwp/linklayer.cpp
link/iwp_outermessage.cpp iwp/outermessage.cpp
link/iwp.cpp iwp/iwp.cpp
link/server.cpp link/server.cpp
link/session.cpp link/session.cpp
messages/dht_immediate.cpp messages/dht_immediate.cpp

@ -1,5 +1,5 @@
#include <link/iwp.hpp> #include <iwp/iwp.hpp>
#include <link/iwp_linklayer.hpp> #include <iwp/linklayer.hpp>
#include <router/abstractrouter.hpp> #include <router/abstractrouter.hpp>
namespace llarp namespace llarp

@ -1,5 +1,5 @@
#ifndef LLARP_LINK_IWP_HPP #ifndef LLARP_IWP_HPP
#define LLARP_LINK_IWP_HPP #define LLARP_IWP_HPP
#include <link/server.hpp> #include <link/server.hpp>

@ -1,4 +1,4 @@
#include <link/iwp_linklayer.hpp> #include <iwp/linklayer.hpp>
namespace llarp namespace llarp
{ {

@ -1,12 +1,12 @@
#ifndef LLARP_LINK_IWP_LINKLAYER_HPP #ifndef LLARP_IWP_LINKLAYER_HPP
#define LLARP_LINK_IWP_LINKLAYER_HPP #define LLARP_IWP_LINKLAYER_HPP
#include <constants/link_layer.hpp> #include <constants/link_layer.hpp>
#include <crypto/crypto.hpp> #include <crypto/crypto.hpp>
#include <crypto/encrypted.hpp> #include <crypto/encrypted.hpp>
#include <crypto/types.hpp> #include <crypto/types.hpp>
#include <link/server.hpp> #include <link/server.hpp>
#include <link/iwp_outermessage.hpp> #include <iwp/outermessage.hpp>
namespace llarp namespace llarp
{ {

@ -1,4 +1,4 @@
#include <link/iwp_outermessage.hpp> #include <iwp/outermessage.hpp>
namespace llarp namespace llarp
{ {

@ -1,5 +1,5 @@
#ifndef LLARP_LINK_IWP_OUTERMESSAGE_HPP #ifndef LLARP_IWP_OUTERMESSAGE_HPP
#define LLARP_LINK_IWP_OUTERMESSAGE_HPP #define LLARP_IWP_OUTERMESSAGE_HPP
#include <crypto/types.hpp> #include <crypto/types.hpp>
#include <router_contact.hpp> #include <router_contact.hpp>

@ -6,7 +6,7 @@
#include <crypto/crypto_libsodium.hpp> #include <crypto/crypto_libsodium.hpp>
#include <dht/context.hpp> #include <dht/context.hpp>
#include <dht/node.hpp> #include <dht/node.hpp>
#include <link/iwp.hpp> #include <iwp/iwp.hpp>
#include <link/server.hpp> #include <link/server.hpp>
#include <messages/link_message.hpp> #include <messages/link_message.hpp>
#include <net/net.hpp> #include <net/net.hpp>

@ -1,5 +1,5 @@
#include <link/iwp.hpp>
#include <ev/ev.h> #include <ev/ev.h>
#include <iwp/iwp.hpp>
#include <messages/link_intro.hpp> #include <messages/link_intro.hpp>
#include <messages/discard.hpp> #include <messages/discard.hpp>
#include <utp/utp.hpp> #include <utp/utp.hpp>

Loading…
Cancel
Save