iface-friendlyName

This commit is contained in:
insanity 2018-09-13 12:27:20 +09:00
parent 364679d149
commit b0986f8b30

View File

@ -5,9 +5,10 @@ import (
)
type Interface struct {
Iface string `json:"iface,omitempty"`
Mac string `json:"mac,omitempty"`
Addresses []*InterfaceAddress `json:"addresses,omitempty"`
Iface string `json:"iface,omitempty"`
FriendlyName string `json:"friendlyName,omitempty"`
Mac string `json:"mac,omitempty"`
Addresses []*InterfaceAddress `json:"addresses,omitempty"`
}
type InterfaceAddress struct {