in.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* Copyright (C) 1997-2019 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, see
  13. <http://www.gnu.org/licenses/>. */
  14. /* Generic version. */
  15. #ifndef _NETINET_IN_H
  16. # error "Never use <bits/in.h> directly; include <netinet/in.h> instead."
  17. #endif
  18. /* This is the generic version, do not assume a linux-based kernel. */
  19. #define __USE_KERNEL_IPV6_DEFS 0
  20. /* To select the IP level. */
  21. #define SOL_IP 0
  22. /* Options for use with `getsockopt' and `setsockopt' at the IP level.
  23. The first word in the comment at the right is the data type used;
  24. "bool" means a boolean value stored in an `int'. */
  25. #define IP_OPTIONS 1 /* ip_opts; IP per-packet options. */
  26. #define IP_HDRINCL 2 /* int; Header is included with data. */
  27. #define IP_TOS 3 /* int; IP type of service and precedence. */
  28. #define IP_TTL 4 /* int; IP time to live. */
  29. #define IP_RECVOPTS 5 /* bool; Receive all IP options w/datagram. */
  30. #define IP_RECVRETOPTS 6 /* bool; Receive IP options for response. */
  31. #define IP_RECVDSTADDR 7 /* bool; Receive IP dst addr w/datagram. */
  32. #define IP_RETOPTS 8 /* ip_opts; Set/get IP per-packet options. */
  33. #define IP_MULTICAST_IF 9 /* in_addr; set/get IP multicast i/f */
  34. #define IP_MULTICAST_TTL 10 /* unsigned char; set/get IP multicast ttl */
  35. #define IP_MULTICAST_LOOP 11 /* bool; set/get IP multicast loopback */
  36. #define IP_ADD_MEMBERSHIP 12 /* ip_mreq; add an IP group membership */
  37. #define IP_DROP_MEMBERSHIP 13 /* ip_mreq; drop an IP group membership */
  38. #ifdef __USE_MISC
  39. /* Structure used to describe IP options for IP_OPTIONS and IP_RETOPTS.
  40. The `ip_dst' field is used for the first-hop gateway when using a
  41. source route (this gets put into the header proper). */
  42. struct ip_opts
  43. {
  44. struct in_addr ip_dst; /* First hop; zero without source route. */
  45. char ip_opts[40]; /* Actually variable in size. */
  46. };
  47. #endif
  48. /* Socket-level values for IPv6. */
  49. #define SOL_IPV6 41
  50. #define SOL_ICMPV6 58
  51. /* IPV6 socket options. */
  52. #define IPV6_ADDRFORM 1
  53. #define IPV6_2292PKTINFO 2
  54. #define IPV6_2292HOPOPTS 3
  55. #define IPV6_2292DSTOPTS 4
  56. #define IPV6_2292RTHDR 5
  57. #define IPV6_2292PKTOPTIONS 6
  58. #define IPV6_CHECKSUM 7
  59. #define IPV6_2292HOPLIMIT 8
  60. #define IPV6_RXINFO IPV6_2292PKTINFO
  61. #define IPV6_TXINFO IPV6_RXINFO
  62. #define SCM_SRCINFO IPV6_TXINFO
  63. #define SCM_SRCRT IPV6_RXSRCRT
  64. #define IPV6_UNICAST_HOPS 16
  65. #define IPV6_MULTICAST_IF 17
  66. #define IPV6_MULTICAST_HOPS 18
  67. #define IPV6_MULTICAST_LOOP 19
  68. #define IPV6_JOIN_GROUP 20
  69. #define IPV6_LEAVE_GROUP 21
  70. #define IPV6_ROUTER_ALERT 22
  71. #define IPV6_MTU_DISCOVER 23
  72. #define IPV6_MTU 24
  73. #define IPV6_RECVERR 25
  74. #define IPV6_V6ONLY 26
  75. #define IPV6_JOIN_ANYCAST 27
  76. #define IPV6_LEAVE_ANYCAST 28
  77. /* Advanced API (RFC3542) (1). */
  78. #define IPV6_RECVPKTINFO 49
  79. #define IPV6_PKTINFO 50
  80. #define IPV6_RECVHOPLIMIT 51
  81. #define IPV6_HOPLIMIT 52
  82. #define IPV6_RECVHOPOPTS 53
  83. #define IPV6_HOPOPTS 54
  84. #define IPV6_RTHDRDSTOPTS 55
  85. #define IPV6_RECVRTHDR 56
  86. #define IPV6_RTHDR 57
  87. #define IPV6_RECVDSTOPTS 58
  88. #define IPV6_DSTOPTS 59
  89. #define IPV6_RECVPATHMTU 60
  90. #define IPV6_PATHMTU 61
  91. #define IPV6_DONTFRAG 62
  92. /* Obsolete synonyms for the above. */
  93. #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
  94. #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
  95. #define IPV6_RXHOPOPTS IPV6_2292HOPOPTS
  96. #define IPV6_RXDSTOPTS IPV6_2292DSTOPTS
  97. /* Routing header options for IPv6. */
  98. #define IPV6_RTHDR_LOOSE 0 /* Hop doesn't need to be neighbour. */
  99. #define IPV6_RTHDR_STRICT 1 /* Hop must be a neighbour. */
  100. #define IPV6_RTHDR_TYPE_0 0 /* IPv6 Routing header type 0. */