| // Copyright 2011 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // Routing sockets and messages for FreeBSD |
| func (any *anyMessage) toRoutingMessage(buf []byte) RoutingMessage { |
| case RTM_ADD, RTM_DELETE, RTM_CHANGE, RTM_GET, RTM_LOSING, RTM_REDIRECT, RTM_MISS, RTM_LOCK, RTM_RESOLVE: |
| p := (*RouteMessage)(unsafe.Pointer(any)) |
| rtm.Data = buf[SizeofRtMsghdr:any.Msglen] |
| p := (*InterfaceMessage)(unsafe.Pointer(any)) |
| ifm := &InterfaceMessage{} |
| ifm.Data = buf[SizeofIfMsghdr:any.Msglen] |
| case RTM_NEWADDR, RTM_DELADDR: |
| p := (*InterfaceAddrMessage)(unsafe.Pointer(any)) |
| ifam := &InterfaceAddrMessage{} |
| ifam.Data = buf[SizeofIfaMsghdr:any.Msglen] |
| case RTM_NEWMADDR, RTM_DELMADDR: |
| p := (*InterfaceMulticastAddrMessage)(unsafe.Pointer(any)) |
| ifmam := &InterfaceMulticastAddrMessage{} |
| ifmam.Data = buf[SizeofIfmaMsghdr:any.Msglen] |
| // InterfaceMulticastAddrMessage represents a routing message |
| // containing network interface address entries. |
| type InterfaceMulticastAddrMessage struct { |