aboutsummaryrefslogtreecommitdiffstats
path: root/tun_freebsd_386.go
diff options
context:
space:
mode:
Diffstat (limited to 'tun_freebsd_386.go')
-rw-r--r--tun_freebsd_386.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/tun_freebsd_386.go b/tun_freebsd_386.go
deleted file mode 100644
index 13e9d95..0000000
--- a/tun_freebsd_386.go
+++ /dev/null
@@ -1,18 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0
- *
- * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
- */
-
-/* Types to deal with FreeBSD fdiogname ioctl for determining tun device name */
-
-package main
-
-// Iface name max len
-const _IFNAMESIZ = 16
-
-// structure for iface requests with a pointer
-type ifreq_ptr struct {
- Name [_IFNAMESIZ]byte
- Data uintptr
- Pad0 [20]byte
-}