-
Notifications
You must be signed in to change notification settings - Fork 0
/
icmpv6.h
75 lines (67 loc) · 1.92 KB
/
icmpv6.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright 2013 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/*
* Author: ncardwell@google.com (Neal Cardwell)
*
* Our own ICMPv6 header declarations, so we have something that's
* portable and somewhat more readable than a typical system header
* file.
*/
#ifndef __ICMPV6_HEADERS_H__
#define __ICMPV6_HEADERS_H__
#include "types.h"
/* ICMPv6 hader. See RFC 4443. */
struct icmpv6 {
__u8 type;
__u8 code;
__sum16 checksum;
union {
struct {
__be32 unused;
} unreachable;
struct {
__be32 mtu;
} packet_too_big;
struct {
__be32 unused;
} time_exceeded;
struct {
__be32 pointer;
} parameter_problem;
} message;
};
/* Supported ICMPv6 types */
#define ICMPV6_DEST_UNREACH 1
#define ICMPV6_PKT_TOOBIG 2
#define ICMPV6_TIME_EXCEED 3
#define ICMPV6_PARAMPROB 4
/* Codes for ICMPV6 Destination Unreachable */
#define ICMPV6_NOROUTE 0
#define ICMPV6_ADM_PROHIBITED 1
#define ICMPV6_NOT_NEIGHBOUR 2
#define ICMPV6_ADDR_UNREACH 3
#define ICMPV6_PORT_UNREACH 4
/* Codes for ICMPV6 Time Exceeded */
#define ICMPV6_EXC_HOPLIMIT 0
#define ICMPV6_EXC_FRAGTIME 1
/* Codes for ICMPV6 Parameter Problem */
#define ICMPV6_HDR_FIELD 0
#define ICMPV6_UNK_NEXTHDR 1
#define ICMPV6_UNK_OPTION 2
#endif /* __ICMPV6_HEADERS_H__ */