diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-10-16 14:33:28 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-24 15:06:18 +0200 |
commit | fdee6b5f5a7d711d68a77088b1e757fb6452bdee (patch) | |
tree | 08d92e92e532edbf326eadf738f74be6a7289e26 /src/libcharon/network | |
parent | 2e7cc07ecde933f52d2d16bf84596ba6da66ebc9 (diff) | |
download | strongswan-fdee6b5f5a7d711d68a77088b1e757fb6452bdee.tar.bz2 strongswan-fdee6b5f5a7d711d68a77088b1e757fb6452bdee.tar.xz |
Moved packet_t and tun_device_t to networking folder
Diffstat (limited to 'src/libcharon/network')
-rw-r--r-- | src/libcharon/network/receiver.c | 2 | ||||
-rw-r--r-- | src/libcharon/network/receiver.h | 2 | ||||
-rw-r--r-- | src/libcharon/network/sender.h | 2 | ||||
-rw-r--r-- | src/libcharon/network/socket.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/libcharon/network/receiver.c b/src/libcharon/network/receiver.c index 205bee58e..f683cf818 100644 --- a/src/libcharon/network/receiver.c +++ b/src/libcharon/network/receiver.c @@ -28,7 +28,7 @@ #include <processing/jobs/callback_job.h> #include <crypto/hashers/hasher.h> #include <threading/mutex.h> -#include <utils/packet.h> +#include <networking/packet.h> /** lifetime of a cookie, in seconds */ #define COOKIE_LIFETIME 10 diff --git a/src/libcharon/network/receiver.h b/src/libcharon/network/receiver.h index 82153613f..58bfe4a96 100644 --- a/src/libcharon/network/receiver.h +++ b/src/libcharon/network/receiver.h @@ -27,7 +27,7 @@ typedef struct receiver_t receiver_t; #include <library.h> #include <networking/host.h> -#include <utils/packet.h> +#include <networking/packet.h> /** * Callback called for any received UDP encapsulated ESP packet. diff --git a/src/libcharon/network/sender.h b/src/libcharon/network/sender.h index 9b5c325cc..080559b89 100644 --- a/src/libcharon/network/sender.h +++ b/src/libcharon/network/sender.h @@ -26,7 +26,7 @@ typedef struct sender_t sender_t; #include <library.h> -#include <utils/packet.h> +#include <networking/packet.h> /** * Callback job responsible for sending IKE packets over the socket. diff --git a/src/libcharon/network/socket.h b/src/libcharon/network/socket.h index b8850c6ed..2eccc4d3f 100644 --- a/src/libcharon/network/socket.h +++ b/src/libcharon/network/socket.h @@ -27,7 +27,7 @@ typedef struct socket_t socket_t; #include <library.h> -#include <utils/packet.h> +#include <networking/packet.h> #include <utils/enumerator.h> #include <plugins/plugin.h> |