mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-22 14:06:35 +00:00

The last known good commit is 6da3249dfb57fbaa16efafcd8744cee8809d80cd before the first release tag.
14 lines
248 B
Go
14 lines
248 B
Go
// +build !linux
|
|
|
|
package socket
|
|
|
|
type cmsghdr struct{}
|
|
|
|
const sizeofCmsghdr = 0
|
|
|
|
func (h *cmsghdr) len() int { return 0 }
|
|
func (h *cmsghdr) lvl() int { return 0 }
|
|
func (h *cmsghdr) typ() int { return 0 }
|
|
|
|
func (h *cmsghdr) set(l, lvl, typ int) {}
|