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