The Pedigree Project  0.1
prot/icmp.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
25 /*
26  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
27  * All rights reserved.
28  *
29  * Redistribution and use in source and binary forms, with or without modification,
30  * are permitted provided that the following conditions are met:
31  *
32  * 1. Redistributions of source code must retain the above copyright notice,
33  * this list of conditions and the following disclaimer.
34  * 2. Redistributions in binary form must reproduce the above copyright notice,
35  * this list of conditions and the following disclaimer in the documentation
36  * and/or other materials provided with the distribution.
37  * 3. The name of the author may not be used to endorse or promote products
38  * derived from this software without specific prior written permission.
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
41  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
42  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
43  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
45  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
46  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
48  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
49  * OF SUCH DAMAGE.
50  *
51  * This file is part of the lwIP TCP/IP stack.
52  *
53  * Author: Adam Dunkels <adam@sics.se>
54  *
55  */
56 #ifndef LWIP_HDR_PROT_ICMP_H
57 #define LWIP_HDR_PROT_ICMP_H
58 
59 #include "lwip/arch.h"
60 
61 #ifdef __cplusplus
62 extern "C" {
63 #endif
64 
65 #define ICMP_ER 0 /* echo reply */
66 #define ICMP_DUR 3 /* destination unreachable */
67 #define ICMP_SQ 4 /* source quench */
68 #define ICMP_RD 5 /* redirect */
69 #define ICMP_ECHO 8 /* echo */
70 #define ICMP_TE 11 /* time exceeded */
71 #define ICMP_PP 12 /* parameter problem */
72 #define ICMP_TS 13 /* timestamp */
73 #define ICMP_TSR 14 /* timestamp reply */
74 #define ICMP_IRQ 15 /* information request */
75 #define ICMP_IR 16 /* information reply */
76 #define ICMP_AM 17 /* address mask request */
77 #define ICMP_AMR 18 /* address mask reply */
78 
79 #ifdef PACK_STRUCT_USE_INCLUDES
80 # include "arch/bpstruct.h"
81 #endif
82 
88 struct icmp_echo_hdr {
89  PACK_STRUCT_FLD_8(u8_t type);
90  PACK_STRUCT_FLD_8(u8_t code);
91  PACK_STRUCT_FIELD(u16_t chksum);
92  PACK_STRUCT_FIELD(u16_t id);
93  PACK_STRUCT_FIELD(u16_t seqno);
94 } PACK_STRUCT_STRUCT;
96 #ifdef PACK_STRUCT_USE_INCLUDES
97 # include "arch/epstruct.h"
98 #endif
99 
100 /* Compatibility defines, old versions used to combine type and code to an u16_t */
101 #define ICMPH_TYPE(hdr) ((hdr)->type)
102 #define ICMPH_CODE(hdr) ((hdr)->code)
103 #define ICMPH_TYPE_SET(hdr, t) ((hdr)->type = (t))
104 #define ICMPH_CODE_SET(hdr, c) ((hdr)->code = (c))
105 
106 #ifdef __cplusplus
107 }
108 #endif
109 
110 #endif /* LWIP_HDR_PROT_ICMP_H */
#define PACK_STRUCT_BEGIN
Definition: arch.h:261
#define PACK_STRUCT_END
Definition: arch.h:270