diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-09-29 04:36:14 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-09-29 19:25:30 +0200 |
commit | 7dbb44fcbea3bbed2c73919394e22865552b7c0d (patch) | |
tree | 09d03a9b211f9f068d25b84f67c8c60d9eb30199 /src/send.c | |
parent | 0b9dfadd25b60bf2fed43d5b553098ed70028374 (diff) |
Rework headers and includes
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,19 +1,20 @@ /* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ -#include "wireguard.h" #include "packets.h" #include "timers.h" #include "device.h" +#include "peer.h" #include "socket.h" #include "messages.h" #include "cookie.h" -#include <net/udp.h> -#include <net/sock.h> -#include <net/ip_tunnels.h> + #include <linux/uio.h> #include <linux/inetdevice.h> #include <linux/socket.h> #include <linux/jiffies.h> +#include <net/udp.h> +#include <net/sock.h> +#include <net/ip_tunnels.h> void packet_send_handshake_initiation(struct wireguard_peer *peer) { |