Sign in
vanadium
/
release.go.x.ref
/
6579510dd57d68e5adbbc7cd5f21c0b88271099f
/
.
/
profiles
/
roaming
/
print_addrs.go
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)
}
}