I am trying to print the gateway of each NetAdapter by following code, It print `[]` for all netadapters, not sure if this is a bug. ``` package main import "github.com/StackExchange/wmi" import "fmt" // https://msdn.microsoft.com/en-us/library/aa394217(v=vs.85).aspx type Win32_NetworkAdapterConfiguration struct { IPAddress []string DHCPServer string MACAddress string DefaultIPGateway []string } func main() { var dst2 []Win32_NetworkAdapterConfiguration query := fmt.Sprintf("") q := wmi.CreateQuery(&dst2, query) err := wmi.Query(q, &dst2) if err != nil { fmt.Println(err) } for _, v := range dst2 { fmt.Println(v.MACAddress, v.IPAddress, v.DHCPServer, v.DefaultIPGateway) } } ```
I am trying to print the gateway of each NetAdapter by following code,
It print
[]for all netadapters, not sure if this is a bug.