12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package route
- type InterfaceMessage struct {
- Version int
- Type int
- Flags int
- Index int
- Name string
- Addrs []Addr
- extOff int
- raw []byte
- }
- type InterfaceAddrMessage struct {
- Version int
- Type int
- Flags int
- Index int
- Addrs []Addr
- raw []byte
- }
- func (m *InterfaceAddrMessage) Sys() []Sys { return nil }
- type InterfaceMulticastAddrMessage struct {
- Version int
- Type int
- Flags int
- Index int
- Addrs []Addr
- raw []byte
- }
- func (m *InterfaceMulticastAddrMessage) Sys() []Sys { return nil }
- type InterfaceAnnounceMessage struct {
- Version int
- Type int
- Index int
- Name string
- What int
- raw []byte
- }
- func (m *InterfaceAnnounceMessage) Sys() []Sys { return nil }
|