github.com/Andyfoo/golang/x/net@v0.0.0-20190901054642-57c1bf301704/internal/socket/zsys_linux_mips.go (about) 1 // Code generated by cmd/cgo -godefs; DO NOT EDIT. 2 // cgo -godefs defs_linux.go 3 4 package socket 5 6 type iovec struct { 7 Base *byte 8 Len uint32 9 } 10 11 type msghdr struct { 12 Name *byte 13 Namelen uint32 14 Iov *iovec 15 Iovlen uint32 16 Control *byte 17 Controllen uint32 18 Flags int32 19 } 20 21 type mmsghdr struct { 22 Hdr msghdr 23 Len uint32 24 } 25 26 type cmsghdr struct { 27 Len uint32 28 Level int32 29 Type int32 30 } 31 32 type sockaddrInet struct { 33 Family uint16 34 Port uint16 35 Addr [4]byte /* in_addr */ 36 X__pad [8]uint8 37 } 38 39 type sockaddrInet6 struct { 40 Family uint16 41 Port uint16 42 Flowinfo uint32 43 Addr [16]byte /* in6_addr */ 44 Scope_id uint32 45 } 46 47 const ( 48 sizeofIovec = 0x8 49 sizeofMsghdr = 0x1c 50 sizeofMmsghdr = 0x20 51 sizeofCmsghdr = 0xc 52 53 sizeofSockaddrInet = 0x10 54 sizeofSockaddrInet6 = 0x1c 55 )