mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-22 12:56:34 +00:00

The last known good commit is 6da3249dfb57fbaa16efafcd8744cee8809d80cd before the first release tag.
8 lines
186 B
Go
8 lines
186 B
Go
// +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) }
|