in.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /* Copyright (C) 1991-1999, 2000, 2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. /* Linux version. */
  16. #ifndef _NETINET_IN_H
  17. # error "Never use <bits/in.h> directly; include <netinet/in.h> instead."
  18. #endif
  19. /* Options for use with `getsockopt' and `setsockopt' at the IP level.
  20. The first word in the comment at the right is the data type used;
  21. "bool" means a boolean value stored in an `int'. */
  22. #define IP_OPTIONS 4 /* ip_opts; IP per-packet options. */
  23. #define IP_HDRINCL 3 /* int; Header is included with data. */
  24. #define IP_TOS 1 /* int; IP type of service and precedence. */
  25. #define IP_TTL 2 /* int; IP time to live. */
  26. #define IP_RECVOPTS 6 /* bool; Receive all IP options w/datagram. */
  27. /* For BSD compatibility. */
  28. #define IP_RECVRETOPTS IP_RETOPTS /* bool; Receive IP options for response. */
  29. #define IP_RETOPTS 7 /* ip_opts; Set/get IP per-packet options. */
  30. #define IP_MULTICAST_IF 32 /* in_addr; set/get IP multicast i/f */
  31. #define IP_MULTICAST_TTL 33 /* u_char; set/get IP multicast ttl */
  32. #define IP_MULTICAST_LOOP 34 /* i_char; set/get IP multicast loopback */
  33. #define IP_ADD_MEMBERSHIP 35 /* ip_mreq; add an IP group membership */
  34. #define IP_DROP_MEMBERSHIP 36 /* ip_mreq; drop an IP group membership */
  35. #define IP_UNBLOCK_SOURCE 37 /* ip_mreq_source: unblock data from source */
  36. #define IP_BLOCK_SOURCE 38 /* ip_mreq_source: block data from source */
  37. #define IP_ADD_SOURCE_MEMBERSHIP 39 /* ip_mreq_source: join source group */
  38. #define IP_DROP_SOURCE_MEMBERSHIP 40 /* ip_mreq_source: leave source group */
  39. #define IP_MSFILTER 41
  40. #define MCAST_JOIN_GROUP 42 /* group_req: join any-source group */
  41. #define MCAST_BLOCK_SOURCE 43 /* group_source_req: block from given group */
  42. #define MCAST_UNBLOCK_SOURCE 44 /* group_source_req: unblock from given group*/
  43. #define MCAST_LEAVE_GROUP 45 /* group_req: leave any-source group */
  44. #define MCAST_JOIN_SOURCE_GROUP 46 /* group_source_req: join source-spec gr */
  45. #define MCAST_LEAVE_SOURCE_GROUP 47 /* group_source_req: leave source-spec gr*/
  46. #define MCAST_MSFILTER 48
  47. #define MCAST_EXCLUDE 0
  48. #define MCAST_INCLUDE 1
  49. #define IP_ROUTER_ALERT 5 /* bool */
  50. #define IP_PKTINFO 8 /* bool */
  51. #define IP_PKTOPTIONS 9
  52. #define IP_PMTUDISC 10 /* obsolete name? */
  53. #define IP_MTU_DISCOVER 10 /* int; see below */
  54. #define IP_RECVERR 11 /* bool */
  55. #define IP_RECVTTL 12 /* bool */
  56. #define IP_RECVTOS 13 /* bool */
  57. /* IP_MTU_DISCOVER arguments. */
  58. #define IP_PMTUDISC_DONT 0 /* Never send DF frames. */
  59. #define IP_PMTUDISC_WANT 1 /* Use per route hints. */
  60. #define IP_PMTUDISC_DO 2 /* Always DF. */
  61. /* To select the IP level. */
  62. #define SOL_IP 0
  63. #define IP_DEFAULT_MULTICAST_TTL 1
  64. #define IP_DEFAULT_MULTICAST_LOOP 1
  65. #define IP_MAX_MEMBERSHIPS 20
  66. /* Structure used to describe IP options for IP_OPTIONS and IP_RETOPTS.
  67. The `ip_dst' field is used for the first-hop gateway when using a
  68. source route (this gets put into the header proper). */
  69. struct ip_opts
  70. {
  71. struct in_addr ip_dst; /* First hop; zero without source route. */
  72. char ip_opts[40]; /* Actually variable in size. */
  73. };
  74. /* Like `struct ip_mreq' but including interface specification by index. */
  75. struct ip_mreqn
  76. {
  77. struct in_addr imr_multiaddr; /* IP multicast address of group */
  78. struct in_addr imr_address; /* local IP address of interface */
  79. int imr_ifindex; /* Interface index */
  80. };
  81. /* Structure used for IP_PKTINFO. */
  82. struct in_pktinfo
  83. {
  84. int ipi_ifindex; /* Interface index */
  85. struct in_addr ipi_spec_dst; /* Routing destination address */
  86. struct in_addr ipi_addr; /* Header destination address */
  87. };
  88. /* Options for use with `getsockopt' and `setsockopt' at the IPv6 level.
  89. The first word in the comment at the right is the data type used;
  90. "bool" means a boolean value stored in an `int'. */
  91. #define IPV6_ADDRFORM 1
  92. #define IPV6_2292PKTINFO 2
  93. #define IPV6_2292HOPOPTS 3
  94. #define IPV6_2292DSTOPTS 4
  95. #define IPV6_2292RTHDR 5
  96. #define IPV6_2292PKTOPTIONS 6
  97. #define IPV6_CHECKSUM 7
  98. #define IPV6_2292HOPLIMIT 8
  99. #define SCM_SRCRT IPV6_RXSRCRT
  100. #define IPV6_NEXTHOP 9
  101. #define IPV6_AUTHHDR 10
  102. #define IPV6_UNICAST_HOPS 16
  103. #define IPV6_MULTICAST_IF 17
  104. #define IPV6_MULTICAST_HOPS 18
  105. #define IPV6_MULTICAST_LOOP 19
  106. #define IPV6_JOIN_GROUP 20
  107. #define IPV6_LEAVE_GROUP 21
  108. #define IPV6_ROUTER_ALERT 22
  109. #define IPV6_MTU_DISCOVER 23
  110. #define IPV6_MTU 24
  111. #define IPV6_RECVERR 25
  112. #define IPV6_V6ONLY 26
  113. #define IPV6_JOIN_ANYCAST 27
  114. #define IPV6_LEAVE_ANYCAST 28
  115. #define IPV6_IPSEC_POLICY 34
  116. #define IPV6_XFRM_POLICY 35
  117. #define IPV6_RECVPKTINFO 49
  118. #define IPV6_PKTINFO 50
  119. #define IPV6_RECVHOPLIMIT 51
  120. #define IPV6_HOPLIMIT 52
  121. #define IPV6_RECVHOPOPTS 53
  122. #define IPV6_HOPOPTS 54
  123. #define IPV6_RTHDRDSTOPTS 55
  124. #define IPV6_RECVRTHDR 56
  125. #define IPV6_RTHDR 57
  126. #define IPV6_RECVDSTOPTS 58
  127. #define IPV6_DSTOPTS 59
  128. #define IPV6_RECVTCLASS 66
  129. #define IPV6_TCLASS 67
  130. /* Obsolete synonyms for the above. */
  131. #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
  132. #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
  133. #define IPV6_RXHOPOPTS IPV6_HOPOPTS
  134. #define IPV6_RXDSTOPTS IPV6_DSTOPTS
  135. /* IPV6_MTU_DISCOVER values. */
  136. #define IPV6_PMTUDISC_DONT 0 /* Never send DF frames. */
  137. #define IPV6_PMTUDISC_WANT 1 /* Use per route hints. */
  138. #define IPV6_PMTUDISC_DO 2 /* Always DF. */
  139. /* Socket level values for IPv6. */
  140. #define SOL_IPV6 41
  141. #define SOL_ICMPV6 58
  142. /* Routing header options for IPv6. */
  143. #define IPV6_RTHDR_LOOSE 0 /* Hop doesn't need to be neighbour. */
  144. #define IPV6_RTHDR_STRICT 1 /* Hop must be a neighbour. */
  145. #define IPV6_RTHDR_TYPE_0 0 /* IPv6 Routing header type 0. */