summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go')
-rw-r--r--vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go b/vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go
deleted file mode 100644
index e92e85800..000000000
--- a/vendor/github.com/miekg/dns/internal/socket/cmsghdr_linux_32bit.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// +build arm mips mipsle 386
-// +build linux
-
-package socket
-
-type cmsghdr struct {
- Len uint32
- Level int32
- Type int32
-}
-
-const (
- sizeofCmsghdr = 0xc
-)
-
-func (h *cmsghdr) set(l, lvl, typ int) {
- h.Len = uint32(l)
- h.Level = int32(lvl)
- h.Type = int32(typ)
-}