aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/uapi/freebsd/dev/wg/if_wg.h
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2022-10-28 20:45:05 -0500
committerJason A. Donenfeld <Jason@zx2c4.com>2022-10-29 03:51:47 +0200
commit7b2ae7aa2f52fbac65874a641cbfbb0182d0ba46 (patch)
treecbc00493180a4b7dbc95b2b49afc196287f718cf /src/uapi/freebsd/dev/wg/if_wg.h
parentwg-quick: linux: prevent traffic from momentarily leaking into tunnel (diff)
downloadwireguard-tools-7b2ae7aa2f52fbac65874a641cbfbb0182d0ba46.tar.xz
wireguard-tools-7b2ae7aa2f52fbac65874a641cbfbb0182d0ba46.zip
ipc: freebsd: move if_wg path to reflect new in-tree location
When we re-added if_wg to the tree, we changed directories in dev to strip the if_ (we don't use this prefix for other interfaces' directories). Adjust it here as a convenience, so that when we import wireguard-tools to FreeBSD the path will just work as-is with our usual build. Signed-off-by: Kyle Evans <kevans@FreeBSD.org> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/uapi/freebsd/dev/wg/if_wg.h')
-rw-r--r--src/uapi/freebsd/dev/wg/if_wg.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uapi/freebsd/dev/wg/if_wg.h b/src/uapi/freebsd/dev/wg/if_wg.h
new file mode 100644
index 0000000..a4b3b13
--- /dev/null
+++ b/src/uapi/freebsd/dev/wg/if_wg.h
@@ -0,0 +1,16 @@
+#ifndef __IF_WG_H__
+#define __IF_WG_H__
+
+#include <net/if.h>
+#include <netinet/in.h>
+
+struct wg_data_io {
+ char wgd_name[IFNAMSIZ];
+ void *wgd_data;
+ size_t wgd_size;
+};
+
+#define SIOCSWG _IOWR('i', 210, struct wg_data_io)
+#define SIOCGWG _IOWR('i', 211, struct wg_data_io)
+
+#endif