mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 11:21:04 +01:00
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
|
//go:build ios
|
||
|
// +build ios
|
||
|
|
||
|
package iface
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"sync"
|
||
|
|
||
|
"github.com/pion/transport/v2"
|
||
|
)
|
||
|
|
||
|
// NewWGIFace Creates a new WireGuard interface instance
|
||
|
func NewWGIFace(ifaceName string, address string, mtu int, tunAdapter TunAdapter, transportNet transport.Net) (*WGIface, error) {
|
||
|
wgIFace := &WGIface{
|
||
|
mu: sync.Mutex{},
|
||
|
}
|
||
|
|
||
|
wgAddress, err := parseWGAddress(address)
|
||
|
if err != nil {
|
||
|
return wgIFace, err
|
||
|
}
|
||
|
|
||
|
tun := newTunDevice(wgAddress, mtu, tunAdapter, transportNet)
|
||
|
wgIFace.tun = tun
|
||
|
|
||
|
wgIFace.configurer = newWGConfigurer(tun.name)
|
||
|
|
||
|
wgIFace.userspaceBind = !WireGuardModuleIsLoaded()
|
||
|
|
||
|
return wgIFace, nil
|
||
|
}
|
||
|
|
||
|
// CreateOniOS creates a new Wireguard interface, sets a given IP and brings it up.
|
||
|
// Will reuse an existing one.
|
||
|
func (w *WGIface) CreateOniOS(tunFd int32) error {
|
||
|
w.mu.Lock()
|
||
|
defer w.mu.Unlock()
|
||
|
return w.tun.Create(tunFd)
|
||
|
}
|
||
|
|
||
|
// CreateOnAndroid creates a new Wireguard interface, sets a given IP and brings it up.
|
||
|
// Will reuse an existing one.
|
||
|
func (w *WGIface) CreateOnAndroid(mIFaceArgs MobileIFaceArguments) error {
|
||
|
return fmt.Errorf("this function has not implemented on mobile")
|
||
|
}
|
||
|
|
||
|
// Create this function make sense on mobile only
|
||
|
func (w *WGIface) Create() error {
|
||
|
return fmt.Errorf("this function has not implemented on mobile")
|
||
|
}
|