aboutsummaryrefslogtreecommitdiff
path: root/tun/tun_freebsd.go
diff options
context:
space:
mode:
Diffstat (limited to 'tun/tun_freebsd.go')
-rw-r--r--tun/tun_freebsd.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/tun/tun_freebsd.go b/tun/tun_freebsd.go
index 435ff91..8c7bcdd 100644
--- a/tun/tun_freebsd.go
+++ b/tun/tun_freebsd.go
@@ -262,19 +262,6 @@ func CreateTUN(name string, mtu int) (TUNDevice, error) {
return nil, fmt.Errorf("error %s", errno.Error())
}
- // Set TUN iface to broadcast mode. TUN inferfaces on freebsd come up in point to point by default
- ifmodemode := unix.IFF_BROADCAST
- _, _, errno = unix.Syscall(
- unix.SYS_IOCTL,
- uintptr(tunfd),
- uintptr(_TUNSIFMODE),
- uintptr(unsafe.Pointer(&ifmodemode)),
- )
-
- if errno != 0 {
- return nil, fmt.Errorf("error %s", errno.Error())
- }
-
// Rename tun interface
// Open control socket