We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c134160 commit fcee4f5Copy full SHA for fcee4f5
interface.go
@@ -76,6 +76,15 @@ func Interfaces() ([]Interface, error) {
76
return nil, errors.New("Interfaces not implemented")
77
}
78
79
+// InterfaceAddrs returns a list of the system's unicast interface
80
+// addresses.
81
+//
82
+// The returned list does not identify the associated interface; use
83
+// Interfaces and Interface.Addrs for more detail.
84
+func InterfaceAddrs() ([]Addr, error) {
85
+ return nil, errors.New("InterfaceAddrs not implemented")
86
+}
87
+
88
// InterfaceByIndex returns the interface specified by index.
89
//
90
// On Solaris, it returns one of the logical network interfaces
0 commit comments