mirror of
https://github.com/golang/net.git
synced 2026-04-01 02:47:08 +09:00
This change adds the Marshal method of RouteMessage to make it possible to exchange route messages between userspace processes and the kernel for the manipulation of routing information base inside the kernel. Change-Id: I0cf2c1a391820f41eb9c5eac1c172598cb2e1533 Reviewed-on: https://go-review.googlesource.com/36077 Reviewed-by: Ian Lance Taylor <iant@golang.org>
40 lines
812 B
Go
40 lines
812 B
Go
// Copyright 2016 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.
|
|
|
|
// +build darwin dragonfly freebsd netbsd openbsd
|
|
|
|
package route
|
|
|
|
import "unsafe"
|
|
|
|
var (
|
|
nativeEndian binaryByteOrder
|
|
kernelAlign int
|
|
wireFormats map[int]*wireFormat
|
|
)
|
|
|
|
func init() {
|
|
i := uint32(1)
|
|
b := (*[4]byte)(unsafe.Pointer(&i))
|
|
if b[0] == 1 {
|
|
nativeEndian = littleEndian
|
|
} else {
|
|
nativeEndian = bigEndian
|
|
}
|
|
kernelAlign, wireFormats = probeRoutingStack()
|
|
}
|
|
|
|
func roundup(l int) int {
|
|
if l == 0 {
|
|
return kernelAlign
|
|
}
|
|
return (l + kernelAlign - 1) & ^(kernelAlign - 1)
|
|
}
|
|
|
|
type wireFormat struct {
|
|
extOff int // offset of header extension
|
|
bodyOff int // offset of message body
|
|
parse func(RIBType, []byte) (Message, error)
|
|
}
|