zsys_linux_riscv64.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. // Code generated by cmd/cgo -godefs; DO NOT EDIT.
  2. // cgo -godefs defs_linux.go
  3. // +build riscv64
  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. sizeofSockFprog = 0x10
  66. )
  67. type kernelSockaddrStorage struct {
  68. Family uint16
  69. X__data [126]int8
  70. }
  71. type sockaddrInet struct {
  72. Family uint16
  73. Port uint16
  74. Addr [4]byte /* in_addr */
  75. X__pad [8]uint8
  76. }
  77. type inetPktinfo struct {
  78. Ifindex int32
  79. Spec_dst [4]byte /* in_addr */
  80. Addr [4]byte /* in_addr */
  81. }
  82. type sockExtendedErr struct {
  83. Errno uint32
  84. Origin uint8
  85. Type uint8
  86. Code uint8
  87. Pad uint8
  88. Info uint32
  89. Data uint32
  90. }
  91. type ipMreq struct {
  92. Multiaddr [4]byte /* in_addr */
  93. Interface [4]byte /* in_addr */
  94. }
  95. type ipMreqn struct {
  96. Multiaddr [4]byte /* in_addr */
  97. Address [4]byte /* in_addr */
  98. Ifindex int32
  99. }
  100. type ipMreqSource struct {
  101. Multiaddr uint32
  102. Interface uint32
  103. Sourceaddr uint32
  104. }
  105. type groupReq struct {
  106. Interface uint32
  107. Pad_cgo_0 [4]byte
  108. Group kernelSockaddrStorage
  109. }
  110. type groupSourceReq struct {
  111. Interface uint32
  112. Pad_cgo_0 [4]byte
  113. Group kernelSockaddrStorage
  114. Source kernelSockaddrStorage
  115. }
  116. type icmpFilter struct {
  117. Data uint32
  118. }
  119. type sockFProg struct {
  120. Len uint16
  121. Filter *sockFilter
  122. }
  123. type sockFilter struct {
  124. Code uint16
  125. Jt uint8
  126. Jf uint8
  127. K uint32
  128. }