2 ipv6.h -- missing IPv6 related definitions
3 Copyright (C) 2003 Ivo Timmermans <ivo@o2w.nl>
4 2003 Guus Sliepen <guus@sliepen.eu.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: ipv6.h,v 1.1.2.8 2003/11/08 15:09:03 guus Exp $
23 #ifndef __TINC_IPV6_H__
24 #define __TINC_IPV6_H__
30 #ifndef IPPROTO_ICMPV6
31 #define IPPROTO_ICMPV6 58
34 #ifndef HAVE_STRUCT_IN6_ADDR
38 uint16_t u6_addr16[8];
39 uint32_t u6_addr32[4];
41 } __attribute__ ((__packed__));
42 #define s6_addr in6_u.u6_addr8
43 #define s6_addr16 in6_u.u6_addr16
44 #define s6_addr32 in6_u.u6_addr32
47 #ifndef HAVE_STRUCT_SOCKADDR_IN6
51 uint32_t sin6_flowinfo;
52 struct in6_addr sin6_addr;
53 uint32_t sin6_scope_id;
54 } __attribute__ ((__packed__));
57 #ifndef IN6_IS_ADDR_V4MAPPED
58 #define IN6_IS_ADDR_V4MAPPED(a) \
59 ((((__const uint32_t *) (a))[0] == 0) \
60 && (((__const uint32_t *) (a))[1] == 0) \
61 && (((__const uint32_t *) (a))[2] == htonl (0xffff)))
64 #ifndef HAVE_STRUCT_IP6_HDR
68 uint32_t ip6_un1_flow;
69 uint16_t ip6_un1_plen;
75 struct in6_addr ip6_src;
76 struct in6_addr ip6_dst;
77 } __attribute__ ((__packed__));
78 #define ip6_vfc ip6_ctlun.ip6_un2_vfc
79 #define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow
80 #define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen
81 #define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt
82 #define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim
83 #define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim
86 #ifndef HAVE_STRUCT_ICMP6_HDR
92 uint32_t icmp6_un_data32[1];
93 uint16_t icmp6_un_data16[2];
94 uint8_t icmp6_un_data8[4];
96 } __attribute__ ((__packed__));
97 #define ICMP6_DST_UNREACH_NOROUTE 0
98 #define ICMP6_DST_UNREACH 1
99 #define ICMP6_DST_UNREACH_ADDR 3
100 #define ND_NEIGHBOR_SOLICIT 135
101 #define ND_NEIGHBOR_ADVERT 136
102 #define icmp6_data32 icmp6_dataun.icmp6_un_data32
103 #define icmp6_data16 icmp6_dataun.icmp6_un_data16
104 #define icmp6_data8 icmp6_dataun.icmp6_un_data8
107 #ifndef HAVE_STRUCT_ND_NEIGHBOR_SOLICIT
108 struct nd_neighbor_solicit {
109 struct icmp6_hdr nd_ns_hdr;
110 struct in6_addr nd_ns_target;
111 } __attribute__ ((__packed__));
112 #define ND_OPT_SOURCE_LINKADDR 1
113 #define ND_OPT_TARGET_LINKADDR 2
114 #define nd_ns_type nd_ns_hdr.icmp6_type
115 #define nd_ns_code nd_ns_hdr.icmp6_code
116 #define nd_ns_cksum nd_ns_hdr.icmp6_cksum
117 #define nd_ns_reserved nd_ns_hdr.icmp6_data32[0]
120 #ifndef HAVE_STRUCT_ND_OPT_HDR
124 } __attribute__ ((__packed__));
127 #endif /* __TINC_IPV6_H__ */