5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 00:59:37 +00:00

Add BSD support (openbsd, freebsd, solaris)

This commit is contained in:
Neil Alexander 2018-03-01 11:49:49 +00:00
parent ebc4eacee4
commit f8dda26dba
8 changed files with 39 additions and 7 deletions

View File

@ -7,7 +7,7 @@ import (
"os/exec"
"time"
"github.com/songgao/water"
"github.com/neilalexander/water"
)
const mtu = 65535

View File

@ -6,7 +6,7 @@ import (
"net"
"os/exec"
"github.com/songgao/water"
"github.com/neilalexander/water"
)
const mtu = 65535

View File

@ -6,7 +6,7 @@ import (
"net"
"os/exec"
"github.com/songgao/water"
"github.com/neilalexander/water"
)
const mtu = 65535

29
src/yggdrasil/tun_bsd.go Normal file
View File

@ -0,0 +1,29 @@
// +build openbsd freebsd solaris
package yggdrasil
import water "github.com/neilalexander/water"
// This is to catch BSD platforms
func (tun *tunDevice) setup(ifname string, iftapmode bool, addr string, mtu int) error {
var config water.Config
if iftapmode {
config = water.Config{DeviceType: water.TAP}
} else {
config = water.Config{DeviceType: water.TUN}
}
config.Name = ifname
iface, err := water.New(config)
if err != nil {
panic(err)
}
tun.iface = iface
tun.mtu = mtu //1280 // Lets default to the smallest thing allowed for now
return tun.setupAddress(addr)
}
func (tun *tunDevice) setupAddress(addr string) error {
tun.core.log.Println("Platform not supported, you must set the address of", tun.iface.Name(), "to", addr)
return nil
}

View File

@ -8,7 +8,7 @@ import "strconv"
import "encoding/binary"
import "golang.org/x/sys/unix"
import water "github.com/songgao/water"
import water "github.com/neilalexander/water"
func (tun *tunDevice) setup(ifname string, iftapmode bool, addr string, mtu int) error {
if iftapmode {

View File

@ -7,7 +7,7 @@ import "fmt"
import "os/exec"
import "strings"
import water "github.com/songgao/water"
import water "github.com/neilalexander/water"
func (tun *tunDevice) setup(ifname string, iftapmode bool, addr string, mtu int) error {
var config water.Config

View File

@ -1,10 +1,13 @@
// +build !linux
// +build !darwin
// +build !windows
// +build !openbsd
// +build !freebsd
// +build !solaris
package yggdrasil
import water "github.com/songgao/water"
import water "github.com/neilalexander/water"
// This is to catch unsupported platforms
// If your platform supports tun devices, you could try configuring it manually

View File

@ -1,6 +1,6 @@
package yggdrasil
import water "github.com/songgao/water"
import water "github.com/neilalexander/water"
import "os/exec"
import "strings"
import "fmt"