aboutsummaryrefslogtreecommitdiffstats
path: root/tun/wintun/wintun_windows.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-08-29 12:47:16 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2019-08-29 13:22:17 -0600
commit353f0956bccf4919f7764166f1dd0f2c8bb7cca2 (patch)
tree7a086d5a4c93f86a54c2e8e659cf9866b64ef018 /tun/wintun/wintun_windows.go
parentwintun: delete all interfaces is not used anymore (diff)
downloadwireguard-go-353f0956bccf4919f7764166f1dd0f2c8bb7cca2.tar.xz
wireguard-go-353f0956bccf4919f7764166f1dd0f2c8bb7cca2.zip
wintun: move ring constants into module
Diffstat (limited to '')
-rw-r--r--tun/wintun/wintun_windows.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tun/wintun/wintun_windows.go b/tun/wintun/wintun_windows.go
index fb8b908..e726748 100644
--- a/tun/wintun/wintun_windows.go
+++ b/tun/wintun/wintun_windows.go
@@ -698,8 +698,8 @@ func (wintun *Interface) deviceData() (setupapi.DevInfo, *setupapi.DevInfoData,
return 0, nil, windows.ERROR_OBJECT_NOT_FOUND
}
-// Handle returns a handle to the interface device object.
-func (wintun *Interface) Handle() (windows.Handle, error) {
+// handle returns a handle to the interface device object.
+func (wintun *Interface) handle() (windows.Handle, error) {
interfaces, err := setupapi.CM_Get_Device_Interface_List(wintun.devInstanceID, &deviceInterfaceNetGUID, setupapi.CM_GET_DEVICE_INTERFACE_LIST_PRESENT)
if err != nil {
return windows.InvalidHandle, fmt.Errorf("Error listing NDIS interfaces: %v", err)