mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
tun: make customization of WintunPool and requested GUID more obvious
Persnickety consumers can now do: func init() { tun.WintunPool, _ = wintun.MakePool("Flurp") tun.WintunStaticRequestedGUID, _ = windows.GUIDFromString("{5ae2716f-0b3e-4dc4-a8b5-48eba11a6e16}") } Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
1481e72107
commit
d664444928
@ -44,15 +44,8 @@ type NativeTun struct {
|
|||||||
readWait windows.Handle
|
readWait windows.Handle
|
||||||
}
|
}
|
||||||
|
|
||||||
var WintunPool *wintun.Pool
|
var WintunPool, _ = wintun.MakePool("WireGuard")
|
||||||
|
var WintunStaticRequestedGUID *windows.GUID
|
||||||
func init() {
|
|
||||||
var err error
|
|
||||||
WintunPool, err = wintun.MakePool("WireGuard")
|
|
||||||
if err != nil {
|
|
||||||
panic(fmt.Errorf("Failed to make pool: %w", err))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//go:linkname procyield runtime.procyield
|
//go:linkname procyield runtime.procyield
|
||||||
func procyield(cycles uint32)
|
func procyield(cycles uint32)
|
||||||
@ -65,7 +58,7 @@ func nanotime() int64
|
|||||||
// interface with the same name exist, it is reused.
|
// interface with the same name exist, it is reused.
|
||||||
//
|
//
|
||||||
func CreateTUN(ifname string, mtu int) (Device, error) {
|
func CreateTUN(ifname string, mtu int) (Device, error) {
|
||||||
return CreateTUNWithRequestedGUID(ifname, nil, mtu)
|
return CreateTUNWithRequestedGUID(ifname, WintunStaticRequestedGUID, mtu)
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user