Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2a607d1

Browse files
committedDec 23, 2020
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 <[email protected]>
1 parent 3735a65 commit 2a607d1

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed
 

‎tun/tun_windows.go

+3-10
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,8 @@ type NativeTun struct {
4444
readWait windows.Handle
4545
}
4646

47-
var WintunPool *wintun.Pool
48-
49-
func init() {
50-
var err error
51-
WintunPool, err = wintun.MakePool("WireGuard")
52-
if err != nil {
53-
panic(fmt.Errorf("Failed to make pool: %w", err))
54-
}
55-
}
47+
var WintunPool, _ = wintun.MakePool("WireGuard")
48+
var WintunStaticRequestedGUID *windows.GUID
5649

5750
//go:linkname procyield runtime.procyield
5851
func procyield(cycles uint32)
@@ -65,7 +58,7 @@ func nanotime() int64
6558
// interface with the same name exist, it is reused.
6659
//
6760
func CreateTUN(ifname string, mtu int) (Device, error) {
68-
return CreateTUNWithRequestedGUID(ifname, nil, mtu)
61+
return CreateTUNWithRequestedGUID(ifname, WintunStaticRequestedGUID, mtu)
6962
}
7063

7164
//

0 commit comments

Comments
 (0)
Please sign in to comment.