Sign in
vanadium
/
release.go.x.ref
/
df88a2e37bc4769dc941e797e5fcb6167bcef150
/
.
/
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)
}
}