* Replace iris with httprouter * Linter fixes * Finalize iris removal * Vendor dependencies for reproducable builds * Api tests are back
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) {}
|