summaryrefslogtreecommitdiff
path: root/tun/tun_openbsd.go
diff options
context:
space:
mode:
Diffstat (limited to 'tun/tun_openbsd.go')
-rw-r--r--tun/tun_openbsd.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/tun/tun_openbsd.go b/tun/tun_openbsd.go
index 3c1878b..5a341f6 100644
--- a/tun/tun_openbsd.go
+++ b/tun/tun_openbsd.go
@@ -129,19 +129,6 @@ func CreateTUN(name string, mtu int) (TUNDevice, error) {
return nil, err
}
- // Set TUN iface to broadcast mode
- ifmodemode := unix.IFF_BROADCAST
- _, _, errno := unix.Syscall(
- unix.SYS_IOCTL,
- uintptr(tunfile.Fd()),
- uintptr(_TUNSIFMODE),
- uintptr(unsafe.Pointer(&ifmodemode)),
- )
-
- if errno != 0 {
- return nil, fmt.Errorf("error %s", errno.Error())
- }
-
tun, err := CreateTUNFromFile(tunfile, mtu)
if err == nil && name == "tun" {