An InterfaceAnnounceMessage represents an interface announcement message.
| 51 | // An InterfaceAnnounceMessage represents an interface announcement |
| 52 | // message. |
| 53 | type InterfaceAnnounceMessage struct { |
| 54 | Version int // message version |
| 55 | Type int // message type |
| 56 | Index int // interface index |
| 57 | Name string // interface name |
| 58 | What int // what type of announcement |
| 59 | |
| 60 | raw []byte // raw message |
| 61 | } |
| 62 | |
| 63 | // Sys implements the Sys method of Message interface. |
| 64 | func (m *InterfaceAnnounceMessage) Sys() []Sys { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected