aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/Kbuild2
-rw-r--r--src/routingtable.c (renamed from src/routing-table.c)2
-rw-r--r--src/routingtable.h (renamed from src/routing-table.h)0
-rw-r--r--src/wireguard.h2
4 files changed, 3 insertions, 3 deletions
diff --git a/src/Kbuild b/src/Kbuild
index 4c125fa..549623f 100644
--- a/src/Kbuild
+++ b/src/Kbuild
@@ -1,7 +1,7 @@
ccflags-y := -O3 -fvisibility=hidden
ccflags-$(CONFIG_WIREGUARD_DEBUG) := -DDEBUG -g
ccflags-y += -Wframe-larger-than=8192
-wireguard-y := main.o noise.o device.o peer.o timers.o data.o send.o receive.o socket.o config.o hashtables.o routing-table.o ratelimiter.o cookie.o
+wireguard-y := main.o noise.o device.o peer.o timers.o data.o send.o receive.o socket.o config.o hashtables.o routingtable.o ratelimiter.o cookie.o
wireguard-y += crypto/curve25519.o crypto/chacha20poly1305.o crypto/blake2s.o crypto/siphash24.o
ifeq ($(CONFIG_X86_64),y)
wireguard-y += crypto/chacha20-ssse3-x86_64.o crypto/poly1305-sse2-x86_64.o
diff --git a/src/routing-table.c b/src/routingtable.c
index be12b43..250c6a1 100644
--- a/src/routing-table.c
+++ b/src/routingtable.c
@@ -1,7 +1,7 @@
/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "wireguard.h"
-#include "routing-table.h"
+#include "routingtable.h"
struct routing_table_node {
struct routing_table_node __rcu *bit[2];
diff --git a/src/routing-table.h b/src/routingtable.h
index c4fd05d..c4fd05d 100644
--- a/src/routing-table.h
+++ b/src/routingtable.h
diff --git a/src/wireguard.h b/src/wireguard.h
index 2985323..f0020a3 100644
--- a/src/wireguard.h
+++ b/src/wireguard.h
@@ -26,7 +26,7 @@
#include "crypto/curve25519.h"
#include "crypto/siphash24.h"
#include "noise.h"
-#include "routing-table.h"
+#include "routingtable.h"
#include "hashtables.h"
#include "peer.h"
#include "cookie.h"