aboutsummaryrefslogtreecommitdiffstats
path: root/tun
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-03-04 14:08:13 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-03-04 16:37:11 +0100
commita1aabb21ae83652e581ccbc0b379c2781c768932 (patch)
treeaed599b46611a2a58bdce4a9999a2f7dc89be6b2 /tun
parentSimplify reading NetCfgInstanceId from registry (diff)
downloadwireguard-go-a1aabb21ae83652e581ccbc0b379c2781c768932.tar.xz
wireguard-go-a1aabb21ae83652e581ccbc0b379c2781c768932.zip
Elaborate the failing step when forwarding errors on return
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'tun')
-rw-r--r--tun/tun_windows.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tun/tun_windows.go b/tun/tun_windows.go
index d767d79..e2752db 100644
--- a/tun/tun_windows.go
+++ b/tun/tun_windows.go
@@ -59,7 +59,7 @@ func CreateTUN(ifname string) (TUNDevice, error) {
// Interface does not exist or an error occured. Create one.
wt, _, err = wintun.CreateInterface("WireGuard Tunnel Adapter", 0)
if err != nil {
- return nil, err
+ return nil, errors.New("Creating Wintun adapter failed: " + err.Error())
}
} else if err != nil {
// Foreign interface with the same name found.
@@ -72,13 +72,13 @@ func CreateTUN(ifname string) (TUNDevice, error) {
err = wt.SetInterfaceName(ifname)
if err != nil {
wt.DeleteInterface(0)
- return nil, err
+ return nil, errors.New("Setting interface name failed: " + err.Error())
}
err = wt.FlushInterface()
if err != nil {
wt.DeleteInterface(0)
- return nil, err
+ return nil, errors.New("Flushing interface failed: " + err.Error())
}
signalNameUTF16, err := windows.UTF16PtrFromString(wt.SignalEventName())