From c4b43e35a772305858e610d879c2b9d47f4d9866 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 7 Feb 2019 18:24:28 +0100 Subject: wintun: add FlushInterface stub --- tun/wintun/wintun_windows.go | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'tun/wintun/wintun_windows.go') diff --git a/tun/wintun/wintun_windows.go b/tun/wintun/wintun_windows.go index 6adbb94..b7d84fa 100644 --- a/tun/wintun/wintun_windows.go +++ b/tun/wintun/wintun_windows.go @@ -322,9 +322,18 @@ func (wintun *Wintun) DeleteInterface(hwndParent uintptr) (bool, bool, error) { return false, false, nil } -/// -/// checkReboot checks device install parameters if a system reboot is required. -/// +// +// FlushInterface removes all properties from the interface and gives it only a very +// vanilla IPv4 and IPv6 configuration with no addresses of any sort assigned. +// +func (wintun *Wintun) FlushInterface() error { + //TODO: implement me! + return nil +} + +// +// checkReboot checks device install parameters if a system reboot is required. +// func checkReboot(deviceInfoSet setupapi.DevInfo, deviceInfoData *setupapi.SP_DEVINFO_DATA) (bool, error) { devInstallParams, err := deviceInfoSet.GetDeviceInstallParams(deviceInfoData) if err != nil { @@ -458,4 +467,4 @@ func (wintun *Wintun) SignalEventName() string { func (wintun *Wintun) DataFileName() string { return fmt.Sprintf("\\\\.\\Global\\WINTUN_DEVICE_%s", guid.ToString((*windows.GUID)(wintun))) -} \ No newline at end of file +} -- cgit v1.2.3