File: endian.go

package info (click to toggle)
golang-github-jsimonetti-rtnetlink 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,264 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package rtnetlink

import (
	"encoding/binary"

	"github.com/mdlayher/netlink/nlenc"
)

var nativeEndian binary.ByteOrder

func init() {
	nativeEndian = nlenc.NativeEndian()
}