summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go
blob: e92e858006cb498da79b48d2fb0c456f73a51fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// +build arm mips mipsle 386
// +build linux

package socket

type cmsghdr struct {
	Len   uint32
	Level int32
	Type  int32
}

const (
	sizeofCmsghdr = 0xc
)

func (h *cmsghdr) set(l, lvl, typ int) {
	h.Len = uint32(l)
	h.Level = int32(lvl)
	h.Type = int32(typ)
}