Big header file cleanup: everything that has to do with standard system
[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.4 2003/07/17 15:06:25 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_NETINET_IP6_H
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
84 struct icmp6_hdr {
85         uint8_t icmp6_type;
86         uint8_t icmp6_code;
87         uint16_t icmp6_cksum;
88         union {
89                 uint32_t icmp6_un_data32[1];
90                 uint16_t icmp6_un_data16[2];
91                 uint8_t icmp6_un_data8[4];
92         } icmp6_dataun;
93 };
94 #define ICMP6_DST_UNREACH_NOROUTE 0
95 #define ICMP6_DST_UNREACH 1
96 #define ICMP6_DST_UNREACH_ADDR 3
97 #define ND_NEIGHBOR_SOLICIT 135
98 #define ND_NEIGHBOR_ADVERT 136
99
100 struct nd_neighbor_solicit {
101         struct icmp6_hdr nd_ns_hdr;
102         struct in6_addr nd_ns_target;
103 };
104 #define ND_OPT_SOURCE_LINKADDR 1
105 #define ND_OPT_TARGET_LINKADDR 2
106
107 struct nd_opt_hdr {
108         uint8_t nd_opt_type;
109         uint8_t nd_opt_len;
110 };
111 #endif
112
113 #endif /* __TINC_IPV6_H__ */