File tree 1 file changed +3
-10
lines changed
1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,8 @@ type NativeTun struct {
44
44
readWait windows.Handle
45
45
}
46
46
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
56
49
57
50
//go:linkname procyield runtime.procyield
58
51
func procyield (cycles uint32 )
@@ -65,7 +58,7 @@ func nanotime() int64
65
58
// interface with the same name exist, it is reused.
66
59
//
67
60
func CreateTUN (ifname string , mtu int ) (Device , error ) {
68
- return CreateTUNWithRequestedGUID (ifname , nil , mtu )
61
+ return CreateTUNWithRequestedGUID (ifname , WintunStaticRequestedGUID , mtu )
69
62
}
70
63
71
64
//
You can’t perform that action at this time.
0 commit comments