aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/compat/compat.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-02-27 15:26:38 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-02-27 15:26:38 +0100
commit4fb71eb7761655109d5416fcda7a73a4ca84358b (patch)
tree23a43b31fa4f4768ee5f89ae8ff6ed4feaedcf8b /src/compat/compat.h
parentallowedips: maintain per-peer list of allowedips (diff)
downloadwireguard-monolithic-historical-4fb71eb7761655109d5416fcda7a73a4ca84358b.tar.xz
wireguard-monolithic-historical-4fb71eb7761655109d5416fcda7a73a4ca84358b.zip
queueing: net-next has changed signature of skb_probe_transport_header
Diffstat (limited to '')
-rw-r--r--src/compat/compat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h
index e08edca..7a61e4c 100644
--- a/src/compat/compat.h
+++ b/src/compat/compat.h
@@ -773,6 +773,11 @@ struct __kernel_timespec {
#endif
#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 1, 0)
+#include <linux/skbuff.h>
+#define skb_probe_transport_header(a) skb_probe_transport_header(a, 0)
+#endif
+
/* https://github.com/ClangBuiltLinux/linux/issues/7 */
#if defined( __clang__) && (!defined(CONFIG_CLANG_VERSION) || CONFIG_CLANG_VERSION < 80000)
#include <linux/bug.h>