k3s/vendor/golang.org/x/net/internal/socket/cmsghdr.go

12 lines
398 B
Go
Raw Normal View History

2019-09-27 21:51:53 +00:00
// Copyright 2017 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.
2019-12-12 01:27:03 +00:00
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
2019-09-27 21:51:53 +00:00
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) }