blob: 1eb07d26dee6a88fc196127dc4be12510403e68b [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// Copyright 2017 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build darwin dragonfly freebsd linux netbsd openbsd solaris
6
7package socket
8
9func (h *cmsghdr) len() int { return int(h.Len) }
10func (h *cmsghdr) lvl() int { return int(h.Level) }
11func (h *cmsghdr) typ() int { return int(h.Type) }