zsys_linux_mips64le.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs defs_linux.go
  3. // +build linux,mips64le
  4. package ipv4
  5. const (
  6. sysIP_TOS = 0x1
  7. sysIP_TTL = 0x2
  8. sysIP_HDRINCL = 0x3
  9. sysIP_OPTIONS = 0x4
  10. sysIP_ROUTER_ALERT = 0x5
  11. sysIP_RECVOPTS = 0x6
  12. sysIP_RETOPTS = 0x7
  13. sysIP_PKTINFO = 0x8
  14. sysIP_PKTOPTIONS = 0x9
  15. sysIP_MTU_DISCOVER = 0xa
  16. sysIP_RECVERR = 0xb
  17. sysIP_RECVTTL = 0xc
  18. sysIP_RECVTOS = 0xd
  19. sysIP_MTU = 0xe
  20. sysIP_FREEBIND = 0xf
  21. sysIP_TRANSPARENT = 0x13
  22. sysIP_RECVRETOPTS = 0x7
  23. sysIP_ORIGDSTADDR = 0x14
  24. sysIP_RECVORIGDSTADDR = 0x14
  25. sysIP_MINTTL = 0x15
  26. sysIP_NODEFRAG = 0x16
  27. sysIP_UNICAST_IF = 0x32
  28. sysIP_MULTICAST_IF = 0x20
  29. sysIP_MULTICAST_TTL = 0x21
  30. sysIP_MULTICAST_LOOP = 0x22
  31. sysIP_ADD_MEMBERSHIP = 0x23
  32. sysIP_DROP_MEMBERSHIP = 0x24
  33. sysIP_UNBLOCK_SOURCE = 0x25
  34. sysIP_BLOCK_SOURCE = 0x26
  35. sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
  36. sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
  37. sysIP_MSFILTER = 0x29
  38. sysMCAST_JOIN_GROUP = 0x2a
  39. sysMCAST_LEAVE_GROUP = 0x2d
  40. sysMCAST_JOIN_SOURCE_GROUP = 0x2e
  41. sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
  42. sysMCAST_BLOCK_SOURCE = 0x2b
  43. sysMCAST_UNBLOCK_SOURCE = 0x2c
  44. sysMCAST_MSFILTER = 0x30
  45. sysIP_MULTICAST_ALL = 0x31
  46. sysICMP_FILTER = 0x1
  47. sysSO_EE_ORIGIN_NONE = 0x0
  48. sysSO_EE_ORIGIN_LOCAL = 0x1
  49. sysSO_EE_ORIGIN_ICMP = 0x2
  50. sysSO_EE_ORIGIN_ICMP6 = 0x3
  51. sysSO_EE_ORIGIN_TXSTATUS = 0x4
  52. sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
  53. sysSOL_SOCKET = 0x1
  54. sysSO_ATTACH_FILTER = 0x1a
  55. sizeofKernelSockaddrStorage = 0x80
  56. sizeofSockaddrInet = 0x10
  57. sizeofInetPktinfo = 0xc
  58. sizeofSockExtendedErr = 0x10
  59. sizeofIPMreq = 0x8
  60. sizeofIPMreqn = 0xc
  61. sizeofIPMreqSource = 0xc
  62. sizeofGroupReq = 0x88
  63. sizeofGroupSourceReq = 0x108
  64. sizeofICMPFilter = 0x4
  65. )
  66. type kernelSockaddrStorage struct {
  67. Family uint16
  68. X__data [126]int8
  69. }
  70. type sockaddrInet struct {
  71. Family uint16
  72. Port uint16
  73. Addr [4]byte /* in_addr */
  74. X__pad [8]uint8
  75. }
  76. type inetPktinfo struct {
  77. Ifindex int32
  78. Spec_dst [4]byte /* in_addr */
  79. Addr [4]byte /* in_addr */
  80. }
  81. type sockExtendedErr struct {
  82. Errno uint32
  83. Origin uint8
  84. Type uint8
  85. Code uint8
  86. Pad uint8
  87. Info uint32
  88. Data uint32
  89. }
  90. type ipMreq struct {
  91. Multiaddr [4]byte /* in_addr */
  92. Interface [4]byte /* in_addr */
  93. }
  94. type ipMreqn struct {
  95. Multiaddr [4]byte /* in_addr */
  96. Address [4]byte /* in_addr */
  97. Ifindex int32
  98. }
  99. type ipMreqSource struct {
  100. Multiaddr uint32
  101. Interface uint32
  102. Sourceaddr uint32
  103. }
  104. type groupReq struct {
  105. Interface uint32
  106. Pad_cgo_0 [4]byte
  107. Group kernelSockaddrStorage
  108. }
  109. type groupSourceReq struct {
  110. Interface uint32
  111. Pad_cgo_0 [4]byte
  112. Group kernelSockaddrStorage
  113. Source kernelSockaddrStorage
  114. }
  115. type icmpFilter struct {
  116. Data uint32
  117. }
  118. type sockFProg struct {
  119. Len uint16
  120. Pad_cgo_0 [6]byte
  121. Filter *sockFilter
  122. }
  123. type sockFilter struct {
  124. Code uint16
  125. Jt uint8
  126. Jf uint8
  127. K uint32
  128. }