in6.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

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. struct sockaddr_in6 {
  39. unsigned short int sin6_family;    /* AF_INET6 */
  40. __u16 sin6_port;      /* Transport layer port # */
  41. __u32 sin6_flowinfo;  /* IPv6 flow information */
  42. struct in6_addr sin6_addr;      /* IPv6 address */
  43. __u32 sin6_scope_id;  /* scope id (new in RFC2553) */
  44. };
  45. struct ipv6_mreq {
  46. /* IPv6 multicast address of group */
  47. struct in6_addr ipv6mr_multiaddr;
  48. /* local IPv6 address of interface */
  49. int ipv6mr_ifindex;
  50. };
  51. struct in6_flowlabel_req
  52. {
  53. struct in6_addr flr_dst;
  54. __u32 flr_label;
  55. __u8 flr_action;
  56. __u8 flr_share;
  57. __u16 flr_flags;
  58. __u16  flr_expires;
  59. __u16 flr_linger;
  60. __u32 __flr_pad;
  61. /* Options in format of IPV6_PKTOPTIONS */
  62. };
  63. #define IPV6_FL_A_GET 0
  64. #define IPV6_FL_A_PUT 1
  65. #define IPV6_FL_A_RENEW 2
  66. #define IPV6_FL_F_CREATE 1
  67. #define IPV6_FL_F_EXCL 2
  68. #define IPV6_FL_S_NONE 0
  69. #define IPV6_FL_S_EXCL 1
  70. #define IPV6_FL_S_PROCESS 2
  71. #define IPV6_FL_S_USER 3
  72. #define IPV6_FL_S_ANY 255
  73. /*
  74.  * Bitmask constant declarations to help applications select out the 
  75.  * flow label and priority fields.
  76.  *
  77.  * Note that this are in host byte order while the flowinfo field of
  78.  * sockaddr_in6 is in network byte order.
  79.  */
  80. #define IPV6_FLOWINFO_FLOWLABEL 0x000fffff
  81. #define IPV6_FLOWINFO_PRIORITY 0x0ff00000
  82. /* These defintions are obsolete */
  83. #define IPV6_PRIORITY_UNCHARACTERIZED 0x0000
  84. #define IPV6_PRIORITY_FILLER 0x0100
  85. #define IPV6_PRIORITY_UNATTENDED 0x0200
  86. #define IPV6_PRIORITY_RESERVED1 0x0300
  87. #define IPV6_PRIORITY_BULK 0x0400
  88. #define IPV6_PRIORITY_RESERVED2 0x0500
  89. #define IPV6_PRIORITY_INTERACTIVE 0x0600
  90. #define IPV6_PRIORITY_CONTROL 0x0700
  91. #define IPV6_PRIORITY_8 0x0800
  92. #define IPV6_PRIORITY_9 0x0900
  93. #define IPV6_PRIORITY_10 0x0a00
  94. #define IPV6_PRIORITY_11 0x0b00
  95. #define IPV6_PRIORITY_12 0x0c00
  96. #define IPV6_PRIORITY_13 0x0d00
  97. #define IPV6_PRIORITY_14 0x0e00
  98. #define IPV6_PRIORITY_15 0x0f00
  99. /*
  100.  * IPV6 extension headers
  101.  */
  102. #define IPPROTO_HOPOPTS 0 /* IPv6 hop-by-hop options */
  103. #define IPPROTO_ROUTING 43 /* IPv6 routing header */
  104. #define IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
  105. #define IPPROTO_ICMPV6 58 /* ICMPv6 */
  106. #define IPPROTO_NONE 59 /* IPv6 no next header */
  107. #define IPPROTO_DSTOPTS 60 /* IPv6 destination options */
  108. /*
  109.  * IPv6 TLV options.
  110.  */
  111. #define IPV6_TLV_PAD0 0
  112. #define IPV6_TLV_PADN 1
  113. #define IPV6_TLV_ROUTERALERT 5
  114. #define IPV6_TLV_JUMBO 194
  115. /*
  116.  * IPV6 socket options
  117.  */
  118. #define IPV6_ADDRFORM 1
  119. #define IPV6_PKTINFO 2
  120. #define IPV6_HOPOPTS 3
  121. #define IPV6_DSTOPTS 4
  122. #define IPV6_RTHDR 5
  123. #define IPV6_PKTOPTIONS 6
  124. #define IPV6_CHECKSUM 7
  125. #define IPV6_HOPLIMIT 8
  126. #define IPV6_NEXTHOP 9
  127. #define IPV6_AUTHHDR 10
  128. #define IPV6_FLOWINFO 11
  129. #define IPV6_UNICAST_HOPS 16
  130. #define IPV6_MULTICAST_IF 17
  131. #define IPV6_MULTICAST_HOPS 18
  132. #define IPV6_MULTICAST_LOOP 19
  133. #define IPV6_ADD_MEMBERSHIP 20
  134. #define IPV6_DROP_MEMBERSHIP 21
  135. #define IPV6_ROUTER_ALERT 22
  136. #define IPV6_MTU_DISCOVER 23
  137. #define IPV6_MTU 24
  138. #define IPV6_RECVERR 25
  139. /* IPV6_MTU_DISCOVER values */
  140. #define IPV6_PMTUDISC_DONT 0
  141. #define IPV6_PMTUDISC_WANT 1
  142. #define IPV6_PMTUDISC_DO 2
  143. /* Flowlabel */
  144. #define IPV6_FLOWLABEL_MGR 32
  145. #define IPV6_FLOWINFO_SEND 33
  146. #endif