blob: 55c4685856425665b5cc8de44f3112cadf5182c0 [file] [log] [blame]
// +build ignore
package main
import (
"fmt"
"veyron.io/veyron/veyron/lib/netstate"
)
func main() {
al, err := netstate.GetAll()
if err != nil {
fmt.Printf("error getting networking state: %s", err)
return
}
for _, a := range al {
fmt.Println(a)
}
}