An InterfaceAddrMessage represents an interface address message.
| 21 | |
| 22 | // An InterfaceAddrMessage represents an interface address message. |
| 23 | type InterfaceAddrMessage struct { |
| 24 | Version int // message version |
| 25 | Type int // message type |
| 26 | Flags int // interface flags |
| 27 | Index int // interface index |
| 28 | Addrs []Addr // addresses |
| 29 | |
| 30 | raw []byte // raw message |
| 31 | } |
| 32 | |
| 33 | // Sys implements the Sys method of Message interface. |
| 34 | func (m *InterfaceAddrMessage) Sys() []Sys { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected