d8cb4cf53472f5ffd4f2c6cb448f89a718ff9a94
[tinc] / lib / ipv6.h
1 /*
2     ipv6.h -- missing IPv6 related definitions
3     Copyright (C) 2003 Ivo Timmermans <ivo@o2w.nl>
4                   2003 Guus Sliepen <guus@sliepen.eu.org>
5
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.
10
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.
15
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.
19
20     $Id: ipv6.h,v 1.1.2.5 2003/07/18 13:42:35 guus Exp $
21 */
22
23 #ifndef __TINC_IPV6_H__
24 #define __TINC_IPV6_H__
25
26 #ifndef AF_INET6
27 #define AF_INET6 10
28 #endif
29
30 #ifndef IPPROTO_ICMPV6
31 #define IPPROTO_ICMPV6 58
32 #endif
33
34 #ifndef HAVE_STRUCT_IN6_ADDR
35 struct in6_addr {
36         union {
37                 uint8_t u6_addr8[16];
38                 uint16_t u6_addr16[8];
39                 uint32_t u6_addr32[4];
40         } in6_u;
41 };
42 #define s6_addr in6_u.u6_addr8
43 #define s6_addr16 in6_u.u6_addr16
44 #define s6_addr32 in6_u.u6_addr32
45 #endif
46
47 #ifndef HAVE_STRUCT_SOCKADDR_IN6
48 struct sockaddr_in6 {
49         in_port_t sin6_port;
50         uint32_t sin6_flowinfo;
51         struct in6_addr sin6_addr;
52         uint32_t sin6_scope_id;
53 };
54 #endif
55
56 #ifndef IN6_IS_ADDR_V4MAPPED
57 #define IN6_IS_ADDR_V4MAPPED(a) \
58         ((((__const uint32_t *) (a))[0] == 0) \
59         && (((__const uint32_t *) (a))[1] == 0) \
60         && (((__const uint32_t *) (a))[2] == htonl (0xffff)))
61 #endif
62
63 #ifndef HAVE_STRUCT_IP6_HDR
64 struct ip6_hdr {
65         union {
66                 struct ip6_hdrctl {
67                         uint32_t ip6_un1_flow;
68                         uint16_t ip6_un1_plen;
69                         uint8_t ip6_un1_nxt;
70                         uint8_t ip6_un1_hlim;
71                 } ip6_un1;
72                 uint8_t ip6_un2_vfc;
73         } ip6_ctlun;
74         struct in6_addr ip6_src;
75         struct in6_addr ip6_dst;
76 };
77 #define ip6_vfc ip6_ctlun.ip6_un2_vfc
78 #define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow
79 #define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen
80 #define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt
81 #define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim
82 #define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim
83 #endif
84
85 #ifndef HAVE_STRUCT_ICMP6_HDR
86 struct icmp6_hdr {
87         uint8_t icmp6_type;
88         uint8_t icmp6_code;
89         uint16_t icmp6_cksum;
90         union {
91                 uint32_t icmp6_un_data32[1];
92                 uint16_t icmp6_un_data16[2];
93                 uint8_t icmp6_un_data8[4];
94         } icmp6_dataun;
95 };
96 #define ICMP6_DST_UNREACH_NOROUTE 0
97 #define ICMP6_DST_UNREACH 1
98 #define ICMP6_DST_UNREACH_ADDR 3
99 #define ND_NEIGHBOR_SOLICIT 135
100 #define ND_NEIGHBOR_ADVERT 136
101 #endif
102
103 #ifndef HAVE_STRUCT_ND_NEIGHBOR_SOLICIT
104 struct nd_neighbor_solicit {
105         struct icmp6_hdr nd_ns_hdr;
106         struct in6_addr nd_ns_target;
107 };
108 #define ND_OPT_SOURCE_LINKADDR 1
109 #define ND_OPT_TARGET_LINKADDR 2
110 #endif
111
112 #ifndef HAVE_STRUCT_ND_OPT_HDR
113 struct nd_opt_hdr {
114         uint8_t nd_opt_type;
115         uint8_t nd_opt_len;
116 };
117 #endif
118
119 #endif /* __TINC_IPV6_H__ */