mirror of
https://github.com/sigcn/pg.git
synced 2025-10-04 11:06:27 +08:00
19 lines
179 B
Go
19 lines
179 B
Go
package netlink
|
|
|
|
var info = Info{}
|
|
|
|
type Info struct {
|
|
IPv4 string
|
|
IPv6 string
|
|
}
|
|
|
|
func Show() Info {
|
|
return info
|
|
}
|
|
|
|
type Link struct {
|
|
Name string
|
|
Index int
|
|
Type uint32
|
|
}
|