summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/miekg/dns/internal/socket/cmsghdr.go
blob: 62f2d2f7466c10d63d83261105a615bb55f7c838 (plain)
1
2
3
4
5
6
7
// +build linux

package socket

func (h *cmsghdr) len() int { return int(h.Len) }
func (h *cmsghdr) lvl() int { return int(h.Level) }
func (h *cmsghdr) typ() int { return int(h.Type) }