in6.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Types and definitions for AF_INET6 
  3.  * Linux INET6 implementation 
  4.  *
  5.  * Authors:
  6.  * Pedro Roque <roque@di.fc.ul.pt>
  7.  *
  8.  * Sources:
  9.  * IPv6 Program Interfaces for BSD Systems
  10.  *      <draft-ietf-ipngwg-bsd-api-05.txt>
  11.  *
  12.  * Advanced Sockets API for IPv6
  13.  * <draft-stevens-advanced-api-00.txt>
  14.  *
  15.  * This program is free software; you can redistribute it and/or
  16.  *      modify it under the terms of the GNU General Public License
  17.  *      as published by the Free Software Foundation; either version
  18.  *      2 of the License, or (at your option) any later version.
  19.  */
  20. #ifndef _LINUX_IN6_H
  21. #define _LINUX_IN6_H
  22. #include <linux/types.h>
  23. /*
  24.  * IPv6 address structure
  25.  */
  26. struct in6_addr
  27. {
  28. union 
  29. {
  30. __u8 u6_addr8[16];
  31. __u16 u6_addr16[8];
  32. __u32 u6_addr32[4];
  33. } in6_u;
  34. #define s6_addr in6_u.u6_addr8
  35. #define s6_addr16 in6_u.u6_addr16
  36. #define s6_addr32 in6_u.u6_addr32
  37. };
  38. /* IPv6 Wildcard Address (::) and Loopback Address (::1) defined in RFC2553
  39.  * NOTE: Be aware the IN6ADDR_* constants and in6addr_* externals are defined
  40.  * in network byte order, not in host byte order as are the IPv4 equivalents
  41.  */
  42. #if 0
  43. extern const struct in6_addr in6addr_any;
  44. #define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }
  45. #endif
  46. extern const struct in6_addr in6addr_loopback;
  47. #define IN6ADDR_LOOPBACK_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
  48. struct sockaddr_in6 {
  49. unsigned short int sin6_family;    /* AF_INET6 */
  50. __u16 sin6_port;      /* Transport layer port # */
  51. __u32 sin6_flowinfo;  /* IPv6 flow information */
  52. struct in6_addr sin6_addr;      /* IPv6 address */
  53. __u32 sin6_scope_id;  /* scope id (new in RFC2553) */
  54. };
  55. struct ipv6_mreq {
  56. /* IPv6 multicast address of group */
  57. struct in6_addr ipv6mr_multiaddr;
  58. /* local IPv6 address of interface */
  59. int ipv6mr_ifindex;
  60. };
  61. #define ipv6mr_acaddr ipv6mr_multiaddr
  62. struct in6_flowlabel_req
  63. {
  64. struct in6_addr flr_dst;
  65. __u32 flr_label;
  66. __u8 flr_action;
  67. __u8 flr_share;
  68. __u16 flr_flags;
  69. __u16  flr_expires;
  70. __u16 flr_linger;
  71. __u32 __flr_pad;
  72. /* Options in format of IPV6_PKTOPTIONS */
  73. };
  74. #define IPV6_FL_A_GET 0
  75. #define IPV6_FL_A_PUT 1
  76. #define IPV6_FL_A_RENEW 2
  77. #define IPV6_FL_F_CREATE 1
  78. #define IPV6_FL_F_EXCL 2
  79. #define IPV6_FL_S_NONE 0
  80. #define IPV6_FL_S_EXCL 1
  81. #define IPV6_FL_S_PROCESS 2
  82. #define IPV6_FL_S_USER 3
  83. #define IPV6_FL_S_ANY 255
  84. /*
  85.  * Bitmask constant declarations to help applications select out the 
  86.  * flow label and priority fields.
  87.  *
  88.  * Note that this are in host byte order while the flowinfo field of
  89.  * sockaddr_in6 is in network byte order.
  90.  */
  91. #define IPV6_FLOWINFO_FLOWLABEL 0x000fffff
  92. #define IPV6_FLOWINFO_PRIORITY 0x0ff00000
  93. /* These defintions are obsolete */
  94. #define IPV6_PRIORITY_UNCHARACTERIZED 0x0000
  95. #define IPV6_PRIORITY_FILLER 0x0100
  96. #define IPV6_PRIORITY_UNATTENDED 0x0200
  97. #define IPV6_PRIORITY_RESERVED1 0x0300
  98. #define IPV6_PRIORITY_BULK 0x0400
  99. #define IPV6_PRIORITY_RESERVED2 0x0500
  100. #define IPV6_PRIORITY_INTERACTIVE 0x0600
  101. #define IPV6_PRIORITY_CONTROL 0x0700
  102. #define IPV6_PRIORITY_8 0x0800
  103. #define IPV6_PRIORITY_9 0x0900
  104. #define IPV6_PRIORITY_10 0x0a00
  105. #define IPV6_PRIORITY_11 0x0b00
  106. #define IPV6_PRIORITY_12 0x0c00
  107. #define IPV6_PRIORITY_13 0x0d00
  108. #define IPV6_PRIORITY_14 0x0e00
  109. #define IPV6_PRIORITY_15 0x0f00
  110. /*
  111.  * IPV6 extension headers
  112.  */
  113. #define IPPROTO_HOPOPTS 0 /* IPv6 hop-by-hop options */
  114. #define IPPROTO_ROUTING 43 /* IPv6 routing header */
  115. #define IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
  116. #define IPPROTO_ICMPV6 58 /* ICMPv6 */
  117. #define IPPROTO_NONE 59 /* IPv6 no next header */
  118. #define IPPROTO_DSTOPTS 60 /* IPv6 destination options */
  119. /*
  120.  * IPv6 TLV options.
  121.  */
  122. #define IPV6_TLV_PAD0 0
  123. #define IPV6_TLV_PADN 1
  124. #define IPV6_TLV_ROUTERALERT 5
  125. #define IPV6_TLV_JUMBO 194
  126. /*
  127.  * IPV6 socket options
  128.  */
  129. #define IPV6_ADDRFORM 1
  130. #define IPV6_2292PKTINFO 2
  131. #define IPV6_2292HOPOPTS 3
  132. #define IPV6_2292DSTOPTS 4
  133. #define IPV6_2292RTHDR 5
  134. #define IPV6_2292PKTOPTIONS 6
  135. #define IPV6_CHECKSUM 7
  136. #define IPV6_2292HOPLIMIT 8
  137. #define IPV6_NEXTHOP 9
  138. #define IPV6_AUTHHDR 10 /* obsolete */
  139. #define IPV6_FLOWINFO 11
  140. #define IPV6_UNICAST_HOPS 16
  141. #define IPV6_MULTICAST_IF 17
  142. #define IPV6_MULTICAST_HOPS 18
  143. #define IPV6_MULTICAST_LOOP 19
  144. #define IPV6_ADD_MEMBERSHIP 20
  145. #define IPV6_DROP_MEMBERSHIP 21
  146. #define IPV6_ROUTER_ALERT 22
  147. #define IPV6_MTU_DISCOVER 23
  148. #define IPV6_MTU 24
  149. #define IPV6_RECVERR 25
  150. #define IPV6_V6ONLY 26
  151. #define IPV6_JOIN_ANYCAST 27
  152. #define IPV6_LEAVE_ANYCAST 28
  153. /* IPV6_MTU_DISCOVER values */
  154. #define IPV6_PMTUDISC_DONT 0
  155. #define IPV6_PMTUDISC_WANT 1
  156. #define IPV6_PMTUDISC_DO 2
  157. /* Flowlabel */
  158. #define IPV6_FLOWLABEL_MGR 32
  159. #define IPV6_FLOWINFO_SEND 33
  160. #define IPV6_IPSEC_POLICY 34
  161. #define IPV6_XFRM_POLICY 35
  162. /*
  163.  * Multicast:
  164.  * Following socket options are shared between IPv4 and IPv6.
  165.  *
  166.  * MCAST_JOIN_GROUP 42
  167.  * MCAST_BLOCK_SOURCE 43
  168.  * MCAST_UNBLOCK_SOURCE 44
  169.  * MCAST_LEAVE_GROUP 45
  170.  * MCAST_JOIN_SOURCE_GROUP 46
  171.  * MCAST_LEAVE_SOURCE_GROUP 47
  172.  * MCAST_MSFILTER 48
  173.  */
  174. /*
  175.  * Advanced API (RFC3542) (1)
  176.  *
  177.  * Note: IPV6_RECVRTHDRDSTOPTS does not exist. see net/ipv6/datagram.c.
  178.  */
  179. #define IPV6_RECVPKTINFO 49
  180. #define IPV6_PKTINFO 50
  181. #define IPV6_RECVHOPLIMIT 51
  182. #define IPV6_HOPLIMIT 52
  183. #define IPV6_RECVHOPOPTS 53
  184. #define IPV6_HOPOPTS 54
  185. #define IPV6_RTHDRDSTOPTS 55
  186. #define IPV6_RECVRTHDR 56
  187. #define IPV6_RTHDR 57
  188. #define IPV6_RECVDSTOPTS 58
  189. #define IPV6_DSTOPTS 59
  190. #if 0 /* not yet */
  191. #define IPV6_RECVPATHMTU 60
  192. #define IPV6_PATHMTU 61
  193. #define IPV6_DONTFRAG 62
  194. #define IPV6_USE_MIN_MTU 63
  195. #endif
  196. /*
  197.  * Netfilter
  198.  *
  199.  * Following socket options are used in ip6_tables;
  200.  * see include/linux/netfilter_ipv6/ip6_tables.h.
  201.  *
  202.  * IP6T_SO_SET_REPLACE / IP6T_SO_GET_INFO 64
  203.  * IP6T_SO_SET_ADD_COUNTERS / IP6T_SO_GET_ENTRIES 65
  204.  */
  205. /*
  206.  * Advanced API (RFC3542) (2)
  207.  */
  208. #define IPV6_RECVTCLASS 66
  209. #define IPV6_TCLASS 67
  210. #endif