mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
31 lines
898 B
Go
31 lines
898 B
Go
//go:build ios
|
|
|
|
package iface
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pion/transport/v3"
|
|
|
|
"github.com/netbirdio/netbird/iface/bind"
|
|
)
|
|
|
|
// NewWGIFace Creates a new WireGuard interface instance
|
|
func NewWGIFace(iFaceName string, address string, wgPort int, wgPrivKey string, mtu int, transportNet transport.Net, args *MobileIFaceArguments, filterFn bind.FilterFn) (*WGIface, error) {
|
|
wgAddress, err := parseWGAddress(address)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
wgIFace := &WGIface{
|
|
tun: newTunDevice(iFaceName, wgAddress, wgPort, wgPrivKey, transportNet, args.TunFd, filterFn),
|
|
userspaceBind: true,
|
|
}
|
|
return wgIFace, nil
|
|
}
|
|
|
|
// CreateOnAndroid creates a new Wireguard interface, sets a given IP and brings it up.
|
|
// Will reuse an existing one.
|
|
func (w *WGIface) CreateOnAndroid([]string, string, []string) error {
|
|
return fmt.Errorf("this function has not implemented on this platform")
|
|
}
|