Home | History | Annotate | Line # | Download | only in netinet6
in6.h revision 1.6.2.1
      1  1.6.2.1   bouyer /*	$NetBSD: in6.h,v 1.6.2.1 2000/11/20 18:10:46 bouyer Exp $	*/
      2  1.6.2.1   bouyer /*	$KAME: in6.h,v 1.57 2000/08/26 10:00:45 itojun Exp $	*/
      3      1.5  thorpej 
      4      1.2   itojun /*
      5      1.2   itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      6      1.2   itojun  * All rights reserved.
      7  1.6.2.1   bouyer  *
      8      1.2   itojun  * Redistribution and use in source and binary forms, with or without
      9      1.2   itojun  * modification, are permitted provided that the following conditions
     10      1.2   itojun  * are met:
     11      1.2   itojun  * 1. Redistributions of source code must retain the above copyright
     12      1.2   itojun  *    notice, this list of conditions and the following disclaimer.
     13      1.2   itojun  * 2. Redistributions in binary form must reproduce the above copyright
     14      1.2   itojun  *    notice, this list of conditions and the following disclaimer in the
     15      1.2   itojun  *    documentation and/or other materials provided with the distribution.
     16      1.2   itojun  * 3. Neither the name of the project nor the names of its contributors
     17      1.2   itojun  *    may be used to endorse or promote products derived from this software
     18      1.2   itojun  *    without specific prior written permission.
     19  1.6.2.1   bouyer  *
     20      1.2   itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     21      1.2   itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22      1.2   itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23      1.2   itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     24      1.2   itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25      1.2   itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26      1.2   itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27      1.2   itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28      1.2   itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29      1.2   itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30      1.2   itojun  * SUCH DAMAGE.
     31      1.2   itojun  */
     32      1.2   itojun 
     33      1.2   itojun /*
     34      1.2   itojun  * Copyright (c) 1982, 1986, 1990, 1993
     35      1.2   itojun  *	The Regents of the University of California.  All rights reserved.
     36      1.2   itojun  *
     37      1.2   itojun  * Redistribution and use in source and binary forms, with or without
     38      1.2   itojun  * modification, are permitted provided that the following conditions
     39      1.2   itojun  * are met:
     40      1.2   itojun  * 1. Redistributions of source code must retain the above copyright
     41      1.2   itojun  *    notice, this list of conditions and the following disclaimer.
     42      1.2   itojun  * 2. Redistributions in binary form must reproduce the above copyright
     43      1.2   itojun  *    notice, this list of conditions and the following disclaimer in the
     44      1.2   itojun  *    documentation and/or other materials provided with the distribution.
     45      1.2   itojun  * 3. All advertising materials mentioning features or use of this software
     46      1.2   itojun  *    must display the following acknowledgement:
     47      1.2   itojun  *	This product includes software developed by the University of
     48      1.2   itojun  *	California, Berkeley and its contributors.
     49      1.2   itojun  * 4. Neither the name of the University nor the names of its contributors
     50      1.2   itojun  *    may be used to endorse or promote products derived from this software
     51      1.2   itojun  *    without specific prior written permission.
     52      1.2   itojun  *
     53      1.2   itojun  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     54      1.2   itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55      1.2   itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56      1.2   itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     57      1.2   itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58      1.2   itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59      1.2   itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60      1.2   itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61      1.2   itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62      1.2   itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63      1.2   itojun  * SUCH DAMAGE.
     64      1.2   itojun  *
     65      1.2   itojun  *	@(#)in.h	8.3 (Berkeley) 1/3/94
     66      1.2   itojun  */
     67      1.2   itojun 
     68  1.6.2.1   bouyer #ifndef __KAME_NETINET_IN_H_INCLUDED_
     69  1.6.2.1   bouyer #error "do not include netinet6/in6.h directly, include netinet/in.h"
     70  1.6.2.1   bouyer #endif
     71  1.6.2.1   bouyer 
     72      1.2   itojun #ifndef _NETINET6_IN6_H_
     73      1.2   itojun #define _NETINET6_IN6_H_
     74      1.2   itojun 
     75      1.2   itojun /*
     76      1.2   itojun  * Identification of the network protocol stack
     77      1.2   itojun  */
     78      1.2   itojun #define __KAME__
     79  1.6.2.1   bouyer #define __KAME_VERSION		"19991213/NetBSD-current"
     80      1.2   itojun 
     81      1.2   itojun /*
     82      1.2   itojun  * Local port number conventions:
     83      1.2   itojun  *
     84      1.2   itojun  * Ports < IPPORT_RESERVED are reserved for privileged processes (e.g. root),
     85      1.2   itojun  * unless a kernel is compiled with IPNOPRIVPORTS defined.
     86      1.2   itojun  *
     87      1.2   itojun  * When a user does a bind(2) or connect(2) with a port number of zero,
     88      1.2   itojun  * a non-conflicting local port address is chosen.
     89      1.2   itojun  *
     90  1.6.2.1   bouyer  * The default range is IPPORT_ANONMIN to IPPORT_ANONMAX, although
     91      1.2   itojun  * that is settable by sysctl(3); net.inet.ip.anonportmin and
     92      1.2   itojun  * net.inet.ip.anonportmax respectively.
     93      1.2   itojun  *
     94      1.2   itojun  * A user may set the IPPROTO_IP option IP_PORTRANGE to change this
     95      1.2   itojun  * default assignment range.
     96      1.2   itojun  *
     97      1.2   itojun  * The value IP_PORTRANGE_DEFAULT causes the default behavior.
     98      1.2   itojun  *
     99      1.2   itojun  * The value IP_PORTRANGE_HIGH is the same as IP_PORTRANGE_DEFAULT,
    100      1.2   itojun  * and exists only for FreeBSD compatibility purposes.
    101      1.2   itojun  *
    102      1.2   itojun  * The value IP_PORTRANGE_LOW changes the range to the "low" are
    103      1.2   itojun  * that is (by convention) restricted to privileged processes.
    104      1.2   itojun  * This convention is based on "vouchsafe" principles only.
    105      1.2   itojun  * It is only secure if you trust the remote host to restrict these ports.
    106      1.2   itojun  * The range is IPPORT_RESERVEDMIN to IPPORT_RESERVEDMAX.
    107      1.2   itojun  */
    108      1.2   itojun 
    109      1.2   itojun #define	IPV6PORT_RESERVED	1024
    110      1.2   itojun #define	IPV6PORT_ANONMIN	49152
    111      1.2   itojun #define	IPV6PORT_ANONMAX	65535
    112      1.2   itojun #define	IPV6PORT_RESERVEDMIN	600
    113      1.2   itojun #define	IPV6PORT_RESERVEDMAX	(IPV6PORT_RESERVED-1)
    114      1.2   itojun 
    115      1.2   itojun /*
    116      1.2   itojun  * IPv6 address
    117      1.2   itojun  */
    118      1.4   kleink struct in6_addr {
    119      1.2   itojun 	union {
    120      1.4   kleink 		u_int8_t   __u6_addr8[16];
    121  1.6.2.1   bouyer 		u_int16_t  __u6_addr16[8];
    122  1.6.2.1   bouyer 		u_int32_t  __u6_addr32[4];
    123      1.4   kleink 	} __u6_addr;			/* 128-bit IP6 address */
    124      1.2   itojun };
    125      1.2   itojun 
    126      1.4   kleink #define s6_addr   __u6_addr.__u6_addr8
    127  1.6.2.1   bouyer #ifdef _KERNEL	/*XXX nonstandard*/
    128  1.6.2.1   bouyer #define s6_addr8  __u6_addr.__u6_addr8
    129  1.6.2.1   bouyer #define s6_addr16 __u6_addr.__u6_addr16
    130  1.6.2.1   bouyer #define s6_addr32 __u6_addr.__u6_addr32
    131  1.6.2.1   bouyer #endif
    132      1.2   itojun 
    133      1.2   itojun #define INET6_ADDRSTRLEN	46
    134      1.2   itojun 
    135      1.2   itojun /*
    136      1.2   itojun  * Socket address for IPv6
    137      1.2   itojun  */
    138  1.6.2.1   bouyer #ifndef _XOPEN_SOURCE
    139      1.2   itojun #define SIN6_LEN
    140      1.4   kleink #endif
    141      1.2   itojun struct sockaddr_in6 {
    142  1.6.2.1   bouyer 	u_int8_t	sin6_len;	/* length of this struct(sa_family_t)*/
    143  1.6.2.1   bouyer 	sa_family_t	sin6_family;	/* AF_INET6 (sa_family_t) */
    144      1.2   itojun 	u_int16_t	sin6_port;	/* Transport layer port # (in_port_t)*/
    145      1.2   itojun 	u_int32_t	sin6_flowinfo;	/* IP6 flow information */
    146      1.2   itojun 	struct in6_addr	sin6_addr;	/* IP6 address */
    147      1.2   itojun 	u_int32_t	sin6_scope_id;	/* intface scope id */
    148      1.2   itojun };
    149      1.2   itojun 
    150      1.2   itojun /*
    151      1.2   itojun  * Local definition for masks
    152      1.2   itojun  */
    153  1.6.2.1   bouyer #ifdef _KERNEL	/*XXX nonstandard*/
    154  1.6.2.1   bouyer #define IN6MASK0	{{{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }}}
    155  1.6.2.1   bouyer #define IN6MASK32	{{{ 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, \
    156  1.6.2.1   bouyer 			    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}}
    157  1.6.2.1   bouyer #define IN6MASK64	{{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \
    158  1.6.2.1   bouyer 			    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}}
    159  1.6.2.1   bouyer #define IN6MASK96	{{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \
    160  1.6.2.1   bouyer 			    0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 }}}
    161  1.6.2.1   bouyer #define IN6MASK128	{{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \
    162  1.6.2.1   bouyer 			    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }}}
    163  1.6.2.1   bouyer #endif
    164      1.2   itojun 
    165      1.2   itojun #ifdef _KERNEL
    166      1.2   itojun extern const struct in6_addr in6mask0;
    167      1.2   itojun extern const struct in6_addr in6mask32;
    168      1.2   itojun extern const struct in6_addr in6mask64;
    169      1.2   itojun extern const struct in6_addr in6mask96;
    170      1.2   itojun extern const struct in6_addr in6mask128;
    171      1.2   itojun #endif /* _KERNEL */
    172      1.2   itojun 
    173      1.2   itojun /*
    174      1.2   itojun  * Macros started with IPV6_ADDR is KAME local
    175      1.2   itojun  */
    176  1.6.2.1   bouyer #ifdef _KERNEL	/*XXX nonstandard*/
    177      1.2   itojun #if BYTE_ORDER == BIG_ENDIAN
    178      1.2   itojun #define IPV6_ADDR_INT32_ONE	1
    179      1.2   itojun #define IPV6_ADDR_INT32_TWO	2
    180      1.2   itojun #define IPV6_ADDR_INT32_MNL	0xff010000
    181      1.2   itojun #define IPV6_ADDR_INT32_MLL	0xff020000
    182      1.2   itojun #define IPV6_ADDR_INT32_SMP	0x0000ffff
    183      1.2   itojun #define IPV6_ADDR_INT16_ULL	0xfe80
    184      1.2   itojun #define IPV6_ADDR_INT16_USL	0xfec0
    185      1.2   itojun #define IPV6_ADDR_INT16_MLL	0xff02
    186      1.2   itojun #elif BYTE_ORDER == LITTLE_ENDIAN
    187      1.2   itojun #define IPV6_ADDR_INT32_ONE	0x01000000
    188      1.2   itojun #define IPV6_ADDR_INT32_TWO	0x02000000
    189      1.2   itojun #define IPV6_ADDR_INT32_MNL	0x000001ff
    190      1.2   itojun #define IPV6_ADDR_INT32_MLL	0x000002ff
    191      1.2   itojun #define IPV6_ADDR_INT32_SMP	0xffff0000
    192      1.2   itojun #define IPV6_ADDR_INT16_ULL	0x80fe
    193      1.2   itojun #define IPV6_ADDR_INT16_USL	0xc0fe
    194      1.2   itojun #define IPV6_ADDR_INT16_MLL	0x02ff
    195      1.2   itojun #endif
    196  1.6.2.1   bouyer #endif
    197      1.2   itojun 
    198      1.2   itojun /*
    199      1.2   itojun  * Definition of some useful macros to handle IP6 addresses
    200      1.2   itojun  */
    201  1.6.2.1   bouyer #define IN6ADDR_ANY_INIT \
    202  1.6.2.1   bouyer 	{{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    203  1.6.2.1   bouyer 	    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }}}
    204  1.6.2.1   bouyer #define IN6ADDR_LOOPBACK_INIT \
    205  1.6.2.1   bouyer 	{{{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    206  1.6.2.1   bouyer 	    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}}
    207  1.6.2.1   bouyer #define IN6ADDR_NODELOCAL_ALLNODES_INIT \
    208  1.6.2.1   bouyer 	{{{ 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    209  1.6.2.1   bouyer 	    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}}
    210  1.6.2.1   bouyer #define IN6ADDR_LINKLOCAL_ALLNODES_INIT \
    211  1.6.2.1   bouyer 	{{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    212  1.6.2.1   bouyer 	    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 }}}
    213      1.2   itojun #define IN6ADDR_LINKLOCAL_ALLROUTERS_INIT \
    214  1.6.2.1   bouyer 	{{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    215  1.6.2.1   bouyer 	    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}}
    216      1.2   itojun 
    217      1.2   itojun extern const struct in6_addr in6addr_any;
    218      1.2   itojun extern const struct in6_addr in6addr_loopback;
    219      1.2   itojun extern const struct in6_addr in6addr_nodelocal_allnodes;
    220      1.2   itojun extern const struct in6_addr in6addr_linklocal_allnodes;
    221      1.2   itojun extern const struct in6_addr in6addr_linklocal_allrouters;
    222      1.2   itojun 
    223      1.2   itojun /*
    224      1.2   itojun  * Equality
    225  1.6.2.1   bouyer  * NOTE: Some of kernel programming environment (for example, openbsd/sparc)
    226  1.6.2.1   bouyer  * does not supply memcmp().  For userland memcmp() is preferred as it is
    227  1.6.2.1   bouyer  * in ANSI standard.
    228      1.2   itojun  */
    229  1.6.2.1   bouyer #ifdef _KERNEL
    230  1.6.2.1   bouyer #define IN6_ARE_ADDR_EQUAL(a, b)			\
    231  1.6.2.1   bouyer     (bcmp(&(a)->s6_addr[0], &(b)->s6_addr[0], sizeof(struct in6_addr)) == 0)
    232  1.6.2.1   bouyer #else
    233      1.2   itojun #define IN6_ARE_ADDR_EQUAL(a, b)			\
    234  1.6.2.1   bouyer     (memcmp(&(a)->s6_addr[0], &(b)->s6_addr[0], sizeof(struct in6_addr)) == 0)
    235  1.6.2.1   bouyer #endif
    236      1.2   itojun 
    237      1.2   itojun /*
    238      1.2   itojun  * Unspecified
    239      1.2   itojun  */
    240      1.2   itojun #define IN6_IS_ADDR_UNSPECIFIED(a)	\
    241  1.6.2.1   bouyer 	((*(u_int32_t *)(void *)(&(a)->s6_addr[0]) == 0) &&	\
    242  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[4]) == 0) &&	\
    243  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[8]) == 0) &&	\
    244  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[12]) == 0))
    245      1.2   itojun 
    246      1.2   itojun /*
    247      1.2   itojun  * Loopback
    248      1.2   itojun  */
    249      1.2   itojun #define IN6_IS_ADDR_LOOPBACK(a)		\
    250  1.6.2.1   bouyer 	((*(u_int32_t *)(void *)(&(a)->s6_addr[0]) == 0) &&	\
    251  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[4]) == 0) &&	\
    252  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[8]) == 0) &&	\
    253  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[12]) == ntohl(1)))
    254      1.2   itojun 
    255      1.2   itojun /*
    256      1.2   itojun  * IPv4 compatible
    257      1.2   itojun  */
    258      1.2   itojun #define IN6_IS_ADDR_V4COMPAT(a)		\
    259  1.6.2.1   bouyer 	((*(u_int32_t *)(void *)(&(a)->s6_addr[0]) == 0) &&	\
    260  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[4]) == 0) &&	\
    261  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[8]) == 0) &&	\
    262  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[12]) != 0) &&	\
    263  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[12]) != ntohl(1)))
    264      1.2   itojun 
    265      1.2   itojun /*
    266      1.2   itojun  * Mapped
    267      1.2   itojun  */
    268      1.2   itojun #define IN6_IS_ADDR_V4MAPPED(a)		      \
    269  1.6.2.1   bouyer 	((*(u_int32_t *)(void *)(&(a)->s6_addr[0]) == 0) &&	\
    270  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[4]) == 0) &&	\
    271  1.6.2.1   bouyer 	 (*(u_int32_t *)(void *)(&(a)->s6_addr[8]) == ntohl(0x0000ffff)))
    272      1.2   itojun 
    273      1.2   itojun /*
    274      1.2   itojun  * KAME Scope Values
    275      1.2   itojun  */
    276      1.2   itojun 
    277  1.6.2.1   bouyer #ifdef _KERNEL	/*XXX nonstandard*/
    278      1.2   itojun #define IPV6_ADDR_SCOPE_NODELOCAL	0x01
    279      1.2   itojun #define IPV6_ADDR_SCOPE_LINKLOCAL	0x02
    280      1.2   itojun #define IPV6_ADDR_SCOPE_SITELOCAL	0x05
    281      1.2   itojun #define IPV6_ADDR_SCOPE_ORGLOCAL	0x08	/* just used in this file */
    282      1.2   itojun #define IPV6_ADDR_SCOPE_GLOBAL		0x0e
    283  1.6.2.1   bouyer #else
    284  1.6.2.1   bouyer #define __IPV6_ADDR_SCOPE_NODELOCAL	0x01
    285  1.6.2.1   bouyer #define __IPV6_ADDR_SCOPE_LINKLOCAL	0x02
    286  1.6.2.1   bouyer #define __IPV6_ADDR_SCOPE_SITELOCAL	0x05
    287  1.6.2.1   bouyer #define __IPV6_ADDR_SCOPE_ORGLOCAL	0x08	/* just used in this file */
    288  1.6.2.1   bouyer #define __IPV6_ADDR_SCOPE_GLOBAL	0x0e
    289  1.6.2.1   bouyer #endif
    290      1.2   itojun 
    291      1.2   itojun /*
    292      1.2   itojun  * Unicast Scope
    293  1.6.2.1   bouyer  * Note that we must check topmost 10 bits only, not 16 bits (see RFC2373).
    294      1.2   itojun  */
    295      1.2   itojun #define IN6_IS_ADDR_LINKLOCAL(a)	\
    296  1.6.2.1   bouyer 	(((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0x80))
    297      1.2   itojun #define IN6_IS_ADDR_SITELOCAL(a)	\
    298  1.6.2.1   bouyer 	(((a)->s6_addr[0] == 0xfe) && (((a)->s6_addr[1] & 0xc0) == 0xc0))
    299      1.2   itojun 
    300      1.2   itojun /*
    301      1.2   itojun  * Multicast
    302      1.2   itojun  */
    303  1.6.2.1   bouyer #define IN6_IS_ADDR_MULTICAST(a)	((a)->s6_addr[0] == 0xff)
    304      1.2   itojun 
    305  1.6.2.1   bouyer #ifdef _KERNEL	/*XXX nonstandard*/
    306  1.6.2.1   bouyer #define IPV6_ADDR_MC_SCOPE(a)		((a)->s6_addr[1] & 0x0f)
    307  1.6.2.1   bouyer #else
    308  1.6.2.1   bouyer #define __IPV6_ADDR_MC_SCOPE(a)		((a)->s6_addr[1] & 0x0f)
    309  1.6.2.1   bouyer #endif
    310      1.2   itojun 
    311      1.2   itojun /*
    312      1.2   itojun  * Multicast Scope
    313      1.2   itojun  */
    314  1.6.2.1   bouyer #ifdef _KERNEL	/*refers nonstandard items */
    315      1.2   itojun #define IN6_IS_ADDR_MC_NODELOCAL(a)	\
    316      1.2   itojun 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    317      1.2   itojun 	 (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_NODELOCAL))
    318      1.2   itojun #define IN6_IS_ADDR_MC_LINKLOCAL(a)	\
    319      1.2   itojun 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    320      1.2   itojun 	 (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_LINKLOCAL))
    321      1.2   itojun #define IN6_IS_ADDR_MC_SITELOCAL(a)	\
    322      1.2   itojun 	(IN6_IS_ADDR_MULTICAST(a) && 	\
    323      1.2   itojun 	 (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_SITELOCAL))
    324      1.2   itojun #define IN6_IS_ADDR_MC_ORGLOCAL(a)	\
    325      1.2   itojun 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    326      1.2   itojun 	 (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_ORGLOCAL))
    327      1.2   itojun #define IN6_IS_ADDR_MC_GLOBAL(a)	\
    328      1.2   itojun 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    329      1.2   itojun 	 (IPV6_ADDR_MC_SCOPE(a) == IPV6_ADDR_SCOPE_GLOBAL))
    330  1.6.2.1   bouyer #else
    331  1.6.2.1   bouyer #define IN6_IS_ADDR_MC_NODELOCAL(a)	\
    332  1.6.2.1   bouyer 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    333  1.6.2.1   bouyer 	 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_NODELOCAL))
    334  1.6.2.1   bouyer #define IN6_IS_ADDR_MC_LINKLOCAL(a)	\
    335  1.6.2.1   bouyer 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    336  1.6.2.1   bouyer 	 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_LINKLOCAL))
    337  1.6.2.1   bouyer #define IN6_IS_ADDR_MC_SITELOCAL(a)	\
    338  1.6.2.1   bouyer 	(IN6_IS_ADDR_MULTICAST(a) && 	\
    339  1.6.2.1   bouyer 	 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_SITELOCAL))
    340  1.6.2.1   bouyer #define IN6_IS_ADDR_MC_ORGLOCAL(a)	\
    341  1.6.2.1   bouyer 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    342  1.6.2.1   bouyer 	 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_ORGLOCAL))
    343  1.6.2.1   bouyer #define IN6_IS_ADDR_MC_GLOBAL(a)	\
    344  1.6.2.1   bouyer 	(IN6_IS_ADDR_MULTICAST(a) &&	\
    345  1.6.2.1   bouyer 	 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_GLOBAL))
    346  1.6.2.1   bouyer #endif
    347      1.2   itojun 
    348      1.2   itojun /*
    349      1.2   itojun  * Wildcard Socket
    350      1.2   itojun  */
    351  1.6.2.1   bouyer #if 0	/*pre-RFC2553*/
    352      1.2   itojun #define IN6_IS_ADDR_ANY(a)	IN6_IS_ADDR_UNSPECIFIED(a)
    353  1.6.2.1   bouyer #endif
    354      1.2   itojun 
    355      1.2   itojun /*
    356      1.2   itojun  * KAME Scope
    357      1.2   itojun  */
    358  1.6.2.1   bouyer #ifdef _KERNEL	/*nonstandard*/
    359      1.2   itojun #define IN6_IS_SCOPE_LINKLOCAL(a)	\
    360      1.2   itojun 	((IN6_IS_ADDR_LINKLOCAL(a)) ||	\
    361      1.2   itojun 	 (IN6_IS_ADDR_MC_LINKLOCAL(a)))
    362  1.6.2.1   bouyer #endif
    363      1.2   itojun 
    364      1.2   itojun /*
    365      1.2   itojun  * IP6 route structure
    366      1.2   itojun  */
    367  1.6.2.1   bouyer #ifndef _XOPEN_SOURCE
    368      1.4   kleink struct route_in6 {
    369      1.2   itojun 	struct	rtentry *ro_rt;
    370      1.2   itojun 	struct	sockaddr_in6 ro_dst;
    371      1.2   itojun };
    372      1.4   kleink #endif
    373      1.2   itojun 
    374      1.2   itojun /*
    375      1.2   itojun  * Options for use with [gs]etsockopt at the IPV6 level.
    376      1.2   itojun  * First word of comment is data type; bool is stored in int.
    377      1.2   itojun  */
    378      1.2   itojun #define IPV6_OPTIONS		1  /* buf/ip6_opts; set/get IP6 options */
    379      1.2   itojun /* no hdrincl */
    380      1.2   itojun #define IPV6_SOCKOPT_RESERVED1	3  /* reserved for future use */
    381      1.2   itojun #define IPV6_UNICAST_HOPS	4  /* int; IP6 hops */
    382      1.2   itojun #define IPV6_RECVOPTS		5  /* bool; receive all IP6 opts w/dgram */
    383      1.2   itojun #define IPV6_RECVRETOPTS	6  /* bool; receive IP6 opts for response */
    384      1.2   itojun #define IPV6_RECVDSTADDR	7  /* bool; receive IP6 dst addr w/dgram */
    385      1.2   itojun #define IPV6_RETOPTS		8  /* ip6_opts; set/get IP6 options */
    386      1.2   itojun #define IPV6_MULTICAST_IF	9  /* u_char; set/get IP6 multicast i/f  */
    387      1.2   itojun #define IPV6_MULTICAST_HOPS	10 /* u_char; set/get IP6 multicast hops */
    388      1.2   itojun #define IPV6_MULTICAST_LOOP	11 /* u_char; set/get IP6 multicast loopback */
    389      1.2   itojun #define IPV6_JOIN_GROUP		12 /* ip6_mreq; join a group membership */
    390      1.2   itojun #define IPV6_LEAVE_GROUP	13 /* ip6_mreq; leave a group membership */
    391      1.2   itojun #define IPV6_PORTRANGE		14 /* int; range to choose for unspec port */
    392      1.2   itojun #define ICMP6_FILTER		18 /* icmp6_filter; icmp6 filter */
    393      1.2   itojun #define IPV6_PKTINFO		19 /* bool; send/rcv if, src/dst addr */
    394      1.2   itojun #define IPV6_HOPLIMIT		20 /* bool; hop limit */
    395      1.2   itojun #define IPV6_NEXTHOP		21 /* bool; next hop addr */
    396      1.2   itojun #define IPV6_HOPOPTS		22 /* bool; hop-by-hop option */
    397      1.2   itojun #define IPV6_DSTOPTS		23 /* bool; destination option */
    398      1.2   itojun #define IPV6_RTHDR		24 /* bool; routing header */
    399      1.2   itojun #define IPV6_PKTOPTIONS		25 /* buf/cmsghdr; set/get IPv6 options */
    400      1.2   itojun #define IPV6_CHECKSUM		26 /* int; checksum offset for raw socket */
    401      1.2   itojun #define IPV6_BINDV6ONLY		27 /* bool; only bind INET6 at null bind */
    402      1.2   itojun 
    403      1.2   itojun #if 1 /*IPSEC*/
    404      1.2   itojun #define IPV6_IPSEC_POLICY	28 /* struct; get/set security policy */
    405      1.2   itojun #endif
    406  1.6.2.1   bouyer #define IPV6_FAITH		29 /* bool; accept FAITH'ed connections */
    407  1.6.2.1   bouyer /* to define items, should talk with KAME guys first, for *BSD compatibility */
    408      1.2   itojun 
    409      1.2   itojun #define IPV6_RTHDR_LOOSE     0 /* this hop need not be a neighbor. XXX old spec */
    410      1.2   itojun #define IPV6_RTHDR_STRICT    1 /* this hop must be a neighbor. XXX old spec */
    411      1.2   itojun #define IPV6_RTHDR_TYPE_0    0 /* IPv6 routing header type 0 */
    412      1.2   itojun 
    413      1.2   itojun /*
    414      1.2   itojun  * Defaults and limits for options
    415      1.2   itojun  */
    416      1.2   itojun #define IPV6_DEFAULT_MULTICAST_HOPS 1	/* normally limit m'casts to 1 hop  */
    417      1.2   itojun #define IPV6_DEFAULT_MULTICAST_LOOP 1	/* normally hear sends if a member  */
    418      1.2   itojun 
    419      1.2   itojun /*
    420      1.2   itojun  * Argument structure for IPV6_JOIN_GROUP and IPV6_LEAVE_GROUP.
    421      1.2   itojun  */
    422      1.2   itojun struct ipv6_mreq {
    423      1.2   itojun 	struct in6_addr	ipv6mr_multiaddr;
    424  1.6.2.1   bouyer 	unsigned int	ipv6mr_interface;
    425      1.2   itojun };
    426      1.2   itojun 
    427      1.2   itojun /*
    428      1.2   itojun  * IPV6_PKTINFO: Packet information(RFC2292 sec 5)
    429      1.2   itojun  */
    430      1.2   itojun struct in6_pktinfo {
    431  1.6.2.1   bouyer 	struct in6_addr	ipi6_addr;	/* src/dst IPv6 address */
    432  1.6.2.1   bouyer 	unsigned int	ipi6_ifindex;	/* send/recv interface index */
    433      1.2   itojun };
    434      1.2   itojun 
    435      1.2   itojun /*
    436      1.2   itojun  * Argument for IPV6_PORTRANGE:
    437      1.2   itojun  * - which range to search when port is unspecified at bind() or connect()
    438      1.2   itojun  */
    439      1.2   itojun #define	IPV6_PORTRANGE_DEFAULT	0	/* default range */
    440      1.2   itojun #define	IPV6_PORTRANGE_HIGH	1	/* "high" - request firewall bypass */
    441      1.2   itojun #define	IPV6_PORTRANGE_LOW	2	/* "low" - vouchsafe security */
    442      1.2   itojun 
    443  1.6.2.1   bouyer #ifndef _XOPEN_SOURCE
    444      1.2   itojun /*
    445      1.2   itojun  * Definitions for inet6 sysctl operations.
    446      1.2   itojun  *
    447      1.2   itojun  * Third level is protocol number.
    448      1.2   itojun  * Fourth level is desired variable within that protocol.
    449      1.2   itojun  */
    450      1.2   itojun #define IPV6PROTO_MAXID	(IPPROTO_PIM + 1)	/* don't list to IPV6PROTO_MAX */
    451      1.2   itojun 
    452      1.2   itojun #define CTL_IPV6PROTO_NAMES { \
    453      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    454      1.2   itojun 	{ 0, 0 }, \
    455      1.2   itojun 	{ "tcp6", CTLTYPE_NODE }, \
    456      1.2   itojun 	{ 0, 0 }, \
    457      1.2   itojun 	{ 0, 0 }, \
    458      1.2   itojun 	{ 0, 0 }, \
    459      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    460      1.2   itojun 	{ 0, 0 }, \
    461      1.2   itojun 	{ 0, 0 }, \
    462      1.2   itojun 	{ "udp6", CTLTYPE_NODE }, \
    463      1.2   itojun 	{ 0, 0 }, \
    464      1.2   itojun 	{ 0, 0 }, \
    465      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    466      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    467      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    468      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    469      1.2   itojun 	{ 0, 0 }, \
    470      1.2   itojun 	{ "ip6", CTLTYPE_NODE }, \
    471      1.2   itojun 	{ 0, 0 }, \
    472      1.2   itojun 	{ 0, 0 }, \
    473      1.2   itojun 	{ 0, 0 }, \
    474      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    475      1.3   itojun 	{ 0, 0 }, \
    476      1.2   itojun 	{ "ipsec6", CTLTYPE_NODE }, \
    477      1.2   itojun 	{ 0, 0 }, \
    478      1.2   itojun 	{ 0, 0 }, \
    479      1.2   itojun 	{ 0, 0 }, \
    480      1.2   itojun 	{ 0, 0 }, \
    481      1.2   itojun 	{ 0, 0 }, \
    482      1.2   itojun 	{ 0, 0 }, \
    483      1.2   itojun 	{ "icmp6", CTLTYPE_NODE }, \
    484      1.2   itojun 	{ 0, 0 }, \
    485      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    486      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    487      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    488      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    489      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    490      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    491      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    492      1.2   itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, \
    493      1.2   itojun 	{ 0, 0 }, \
    494      1.2   itojun 	{ 0, 0 }, \
    495      1.2   itojun 	{ 0, 0 }, \
    496      1.2   itojun 	{ "pim6", CTLTYPE_NODE }, \
    497      1.2   itojun }
    498      1.2   itojun 
    499      1.2   itojun /*
    500      1.2   itojun  * Names for IP sysctl objects
    501      1.2   itojun  */
    502      1.2   itojun #define IPV6CTL_FORWARDING	1	/* act as router */
    503      1.2   itojun #define IPV6CTL_SENDREDIRECTS	2	/* may send redirects when forwarding*/
    504      1.2   itojun #define IPV6CTL_DEFHLIM		3	/* default Hop-Limit */
    505      1.2   itojun #ifdef notyet
    506      1.2   itojun #define IPV6CTL_DEFMTU		4	/* default MTU */
    507      1.2   itojun #endif
    508      1.2   itojun #define IPV6CTL_FORWSRCRT	5	/* forward source-routed dgrams */
    509      1.2   itojun #define IPV6CTL_STATS		6	/* stats */
    510      1.2   itojun #define IPV6CTL_MRTSTATS	7	/* multicast forwarding stats */
    511      1.2   itojun #define IPV6CTL_MRTPROTO	8	/* multicast routing protocol */
    512      1.2   itojun #define IPV6CTL_MAXFRAGPACKETS	9	/* max packets reassembly queue */
    513      1.2   itojun #define IPV6CTL_SOURCECHECK	10	/* verify source route and intf */
    514      1.2   itojun #define IPV6CTL_SOURCECHECK_LOGINT 11	/* minimume logging interval */
    515      1.2   itojun #define IPV6CTL_ACCEPT_RTADV	12
    516      1.2   itojun #define IPV6CTL_KEEPFAITH	13
    517      1.2   itojun #define IPV6CTL_LOG_INTERVAL	14
    518      1.2   itojun #define IPV6CTL_HDRNESTLIMIT	15
    519      1.2   itojun #define IPV6CTL_DAD_COUNT	16
    520      1.2   itojun #define IPV6CTL_AUTO_FLOWLABEL	17
    521      1.2   itojun #define IPV6CTL_DEFMCASTHLIM	18
    522      1.2   itojun #define IPV6CTL_GIF_HLIM	19	/* default HLIM for gif encap packet */
    523      1.2   itojun #define IPV6CTL_KAME_VERSION	20
    524  1.6.2.1   bouyer #define IPV6CTL_USE_DEPRECATED	21	/* use deprecated addr (RFC2462 5.5.4) */
    525  1.6.2.1   bouyer #define IPV6CTL_RR_PRUNE	22	/* walk timer for router renumbering */
    526  1.6.2.1   bouyer #define IPV6CTL_BINDV6ONLY	24
    527  1.6.2.1   bouyer /* 25 to 27: reserved */
    528  1.6.2.1   bouyer #define IPV6CTL_ANONPORTMIN	28	/* minimum ephemeral port */
    529  1.6.2.1   bouyer #define IPV6CTL_ANONPORTMAX	29	/* maximum ephemeral port */
    530  1.6.2.1   bouyer #define IPV6CTL_LOWPORTMIN	30	/* minimum reserved port */
    531  1.6.2.1   bouyer #define IPV6CTL_LOWPORTMAX	31	/* maximum reserved port */
    532      1.2   itojun /* New entries should be added here from current IPV6CTL_MAXID value. */
    533  1.6.2.1   bouyer /* to define items, should talk with KAME guys first, for *BSD compatibility */
    534  1.6.2.1   bouyer #define IPV6CTL_MAXID		32
    535      1.2   itojun 
    536      1.2   itojun #define IPV6CTL_NAMES { \
    537      1.2   itojun 	{ 0, 0 }, \
    538      1.2   itojun 	{ "forwarding", CTLTYPE_INT }, \
    539      1.2   itojun 	{ "redirect", CTLTYPE_INT }, \
    540      1.2   itojun 	{ "hlim", CTLTYPE_INT }, \
    541      1.2   itojun 	{ "mtu", CTLTYPE_INT }, \
    542      1.2   itojun 	{ "forwsrcrt", CTLTYPE_INT }, \
    543      1.2   itojun 	{ 0, 0 }, \
    544      1.2   itojun 	{ 0, 0 }, \
    545      1.2   itojun 	{ "mrtproto", CTLTYPE_INT }, \
    546      1.2   itojun 	{ "maxfragpackets", CTLTYPE_INT }, \
    547      1.2   itojun 	{ "sourcecheck", CTLTYPE_INT }, \
    548      1.2   itojun 	{ "sourcecheck_logint", CTLTYPE_INT }, \
    549      1.2   itojun 	{ "accept_rtadv", CTLTYPE_INT }, \
    550      1.2   itojun 	{ "keepfaith", CTLTYPE_INT }, \
    551      1.2   itojun 	{ "log_interval", CTLTYPE_INT }, \
    552      1.2   itojun 	{ "hdrnestlimit", CTLTYPE_INT }, \
    553      1.2   itojun 	{ "dad_count", CTLTYPE_INT }, \
    554      1.2   itojun 	{ "auto_flowlabel", CTLTYPE_INT }, \
    555      1.2   itojun 	{ "defmcasthlim", CTLTYPE_INT }, \
    556      1.2   itojun 	{ "gifhlim", CTLTYPE_INT }, \
    557      1.2   itojun 	{ "kame_version", CTLTYPE_STRING }, \
    558  1.6.2.1   bouyer 	{ "use_deprecated", CTLTYPE_INT }, \
    559  1.6.2.1   bouyer 	{ "rr_prune", CTLTYPE_INT }, \
    560  1.6.2.1   bouyer 	{ 0, 0 }, \
    561  1.6.2.1   bouyer 	{ "bindv6only", CTLTYPE_INT }, \
    562  1.6.2.1   bouyer 	{ 0, 0 }, \
    563  1.6.2.1   bouyer 	{ 0, 0 }, \
    564  1.6.2.1   bouyer 	{ 0, 0 }, \
    565  1.6.2.1   bouyer 	{ "anonportmin", CTLTYPE_INT }, \
    566  1.6.2.1   bouyer 	{ "anonportmax", CTLTYPE_INT }, \
    567  1.6.2.1   bouyer 	{ "lowportmin", CTLTYPE_INT }, \
    568  1.6.2.1   bouyer 	{ "lowportmax", CTLTYPE_INT }, \
    569      1.2   itojun }
    570      1.2   itojun 
    571      1.4   kleink #endif /* !_XOPEN_SOURCE */
    572      1.2   itojun 
    573      1.2   itojun #ifdef _KERNEL
    574      1.2   itojun struct cmsghdr;
    575      1.2   itojun 
    576  1.6.2.1   bouyer int	in6_cksum __P((struct mbuf *, u_int8_t, u_int32_t, u_int32_t));
    577      1.2   itojun int	in6_localaddr __P((struct in6_addr *));
    578      1.2   itojun int	in6_addrscope __P((struct in6_addr *));
    579      1.2   itojun struct	in6_ifaddr *in6_ifawithscope __P((struct ifnet *, struct in6_addr *));
    580      1.2   itojun struct	in6_ifaddr *in6_ifawithifp __P((struct ifnet *, struct in6_addr *));
    581      1.2   itojun extern void in6_if_up __P((struct ifnet *));
    582  1.6.2.1   bouyer extern	u_char	ip6_protox[];
    583      1.2   itojun 
    584      1.2   itojun #define	satosin6(sa)	((struct sockaddr_in6 *)(sa))
    585      1.2   itojun #define	sin6tosa(sin6)	((struct sockaddr *)(sin6))
    586      1.2   itojun #define	ifatoia6(ifa)	((struct in6_ifaddr *)(ifa))
    587      1.2   itojun #endif /* _KERNEL */
    588      1.2   itojun 
    589      1.2   itojun __BEGIN_DECLS
    590      1.2   itojun struct cmsghdr;
    591      1.2   itojun 
    592  1.6.2.1   bouyer extern int inet6_option_space __P((int));
    593  1.6.2.1   bouyer extern int inet6_option_init __P((void *, struct cmsghdr **, int));
    594  1.6.2.1   bouyer extern int inet6_option_append __P((struct cmsghdr *, const u_int8_t *,
    595  1.6.2.1   bouyer 	int, int));
    596  1.6.2.1   bouyer extern u_int8_t *inet6_option_alloc __P((struct cmsghdr *, int, int, int));
    597  1.6.2.1   bouyer extern int inet6_option_next __P((const struct cmsghdr *, u_int8_t **));
    598  1.6.2.1   bouyer extern int inet6_option_find __P((const struct cmsghdr *, u_int8_t **, int));
    599      1.2   itojun 
    600      1.2   itojun extern size_t inet6_rthdr_space __P((int, int));
    601      1.2   itojun extern struct cmsghdr *inet6_rthdr_init __P((void *, int));
    602      1.2   itojun extern int inet6_rthdr_add __P((struct cmsghdr *, const struct in6_addr *,
    603      1.2   itojun 		unsigned int));
    604      1.2   itojun extern int inet6_rthdr_lasthop __P((struct cmsghdr *, unsigned int));
    605      1.2   itojun #if 0 /* not implemented yet */
    606      1.2   itojun extern int inet6_rthdr_reverse __P((const struct cmsghdr *, struct cmsghdr *));
    607      1.2   itojun #endif
    608      1.2   itojun extern int inet6_rthdr_segments __P((const struct cmsghdr *));
    609      1.2   itojun extern struct in6_addr *inet6_rthdr_getaddr __P((struct cmsghdr *, int));
    610      1.2   itojun extern int inet6_rthdr_getflags __P((const struct cmsghdr *, int));
    611      1.2   itojun __END_DECLS
    612      1.2   itojun 
    613      1.2   itojun #endif /* !_NETINET6_IN6_H_ */
    614