From 233f3d186ac0cb94d43408e7377d1c0fb9b85a59 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sun, 26 Apr 2020 07:54:44 +0200 Subject: [PATCH] Document InterfaceDescription and SetInterfaceDescription Signed-off-by: Simon Rozman --- wlanapi_windows.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wlanapi_windows.go b/wlanapi_windows.go index eaff7ae..9b01f48 100644 --- a/wlanapi_windows.go +++ b/wlanapi_windows.go @@ -40,10 +40,12 @@ type InterfaceInfo struct { State InterfaceState } +// InterfaceDescription returns the description of the interface which is typically the adapter device name. func (ii *InterfaceInfo) InterfaceDescription() string { return windows.UTF16ToString(ii.interfaceDescription[:]) } +// SetInterfaceDescription sets the description of the interface. func (ii *InterfaceInfo) SetInterfaceDescription(interfaceDescription string) error { str, err := windows.UTF16FromString(interfaceDescription) if err != nil {