zsys_linux_ppc.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs defs_linux.go
  3. // +build linux,ppc
  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. sysSizeofKernelSockaddrStorage = 0x80
  56. sysSizeofSockaddrInet = 0x10
  57. sysSizeofInetPktinfo = 0xc
  58. sysSizeofSockExtendedErr = 0x10
  59. sysSizeofIPMreq = 0x8
  60. sysSizeofIPMreqn = 0xc
  61. sysSizeofIPMreqSource = 0xc
  62. sysSizeofGroupReq = 0x84
  63. sysSizeofGroupSourceReq = 0x104
  64. sysSizeofICMPFilter = 0x4
  65. )
  66. type sysKernelSockaddrStorage struct {
  67. Family uint16
  68. X__data [126]uint8
  69. }
  70. type sysSockaddrInet struct {
  71. Family uint16
  72. Port uint16
  73. Addr [4]byte /* in_addr */
  74. X__pad [8]uint8
  75. }
  76. type sysInetPktinfo struct {
  77. Ifindex int32
  78. Spec_dst [4]byte /* in_addr */
  79. Addr [4]byte /* in_addr */
  80. }
  81. type sysSockExtendedErr 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 sysIPMreq struct {
  91. Multiaddr [4]byte /* in_addr */
  92. Interface [4]byte /* in_addr */
  93. }
  94. type sysIPMreqn struct {
  95. Multiaddr [4]byte /* in_addr */
  96. Address [4]byte /* in_addr */
  97. Ifindex int32
  98. }
  99. type sysIPMreqSource struct {
  100. Multiaddr uint32
  101. Interface uint32
  102. Sourceaddr uint32
  103. }
  104. type sysGroupReq struct {
  105. Interface uint32
  106. Group sysKernelSockaddrStorage
  107. }
  108. type sysGroupSourceReq struct {
  109. Interface uint32
  110. Group sysKernelSockaddrStorage
  111. Source sysKernelSockaddrStorage
  112. }
  113. type sysICMPFilter struct {
  114. Data uint32
  115. }
  116. type sysSockFProg struct {
  117. Len uint16
  118. Pad_cgo_0 [2]byte
  119. Filter *sysSockFilter
  120. }
  121. type sysSockFilter struct {
  122. Code uint16
  123. Jt uint8
  124. Jf uint8
  125. K uint32
  126. }