mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
Removed elevate for now
This commit is contained in:
parent
54235f0a77
commit
698ebe2287
@ -22,7 +22,7 @@ var tunIface tun.Device
|
||||
// Will reuse an existing one.
|
||||
func Create(iface string, address string) error {
|
||||
var err error
|
||||
tunIface, err = createIface(iface, defaultMTU)
|
||||
tunIface, err = tun.CreateTUN(iface, defaultMTU)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -4,15 +4,9 @@ package iface
|
||||
|
||||
import (
|
||||
"golang.zx2c4.com/wireguard/ipc"
|
||||
"golang.zx2c4.com/wireguard/tun"
|
||||
"net"
|
||||
)
|
||||
|
||||
// createIface creates a tun device
|
||||
func createIface(iface string, defaultMTU int) (tun.Device, error) {
|
||||
return tun.CreateTUN(iface, defaultMTU)
|
||||
}
|
||||
|
||||
// getUAPI returns a Listener
|
||||
func getUAPI(iface string) (net.Listener, error) {
|
||||
tunSock, err := ipc.UAPIOpen(iface)
|
||||
|
@ -4,7 +4,6 @@ import (
|
||||
log "github.com/sirupsen/logrus"
|
||||
"golang.zx2c4.com/wireguard/ipc"
|
||||
"golang.zx2c4.com/wireguard/tun"
|
||||
"golang.zx2c4.com/wireguard/windows/elevate"
|
||||
"golang.zx2c4.com/wireguard/windows/tunnel/winipcfg"
|
||||
"net"
|
||||
)
|
||||
@ -31,22 +30,6 @@ func assignAddr(address string, tunDevice tun.Device) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// createIface creates a tun device
|
||||
func createIface(iface string, defaultMTU int) (tun.Device, error) {
|
||||
|
||||
var tunDevice tun.Device
|
||||
err := elevate.DoAsSystem(func() error {
|
||||
var err error
|
||||
tunDevice, err = tun.CreateTUN(iface, defaultMTU)
|
||||
return err
|
||||
})
|
||||
if err != nil {
|
||||
log.Errorln("Failed to create the tunnel device: ", err)
|
||||
return nil, err
|
||||
}
|
||||
return tunDevice, err
|
||||
}
|
||||
|
||||
// getUAPI returns a Listener
|
||||
func getUAPI(iface string) (net.Listener, error) {
|
||||
return ipc.UAPIListen(iface)
|
||||
|
Loading…
Reference in New Issue
Block a user