aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/uapi/freebsd/dev/if_wg/if_wg.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/uapi/freebsd/dev/if_wg/if_wg.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uapi/freebsd/dev/if_wg/if_wg.h b/src/uapi/freebsd/dev/if_wg/if_wg.h
new file mode 100644
index 0000000..a4b3b13
--- /dev/null
+++ b/src/uapi/freebsd/dev/if_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