ConOpSys V2970  P004.07
ANVILEX control operating system
ip4.h
Go to the documentation of this file.
1 /**
2  * @file
3  * IPv4 protocol definitions
4  */
5 
6 /*
7  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without modification,
11  * are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  * this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  * derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
22  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
24  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
30  * OF SUCH DAMAGE.
31  *
32  * This file is part of the lwIP TCP/IP stack.
33  *
34  * Author: Adam Dunkels <adam@sics.se>
35  *
36  */
37 #ifndef LWIP_HDR_PROT_IP4_H
38 #define LWIP_HDR_PROT_IP4_H
39 
40 #include "lwip/arch.h"
41 #include "lwip/ip4_addr.h"
42 
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46 
47 /** This is the packed version of ip4_addr_t,
48  used in network headers that are itself packed */
49 #ifdef PACK_STRUCT_USE_INCLUDES
50 # include "arch/bpstruct.h"
51 #endif
57 #ifdef PACK_STRUCT_USE_INCLUDES
58 # include "arch/epstruct.h"
59 #endif
60 
61 typedef struct ip4_addr_packed ip4_addr_p_t;
62 
63 /* Size of the IPv4 header. Same as 'sizeof(struct ip_hdr)'. */
64 #define IP_HLEN 20
65 /* Maximum size of the IPv4 header with options. */
66 #define IP_HLEN_MAX 60
67 
68 #ifdef PACK_STRUCT_USE_INCLUDES
69 # include "arch/bpstruct.h"
70 #endif
72 /* The IPv4 header */
73 
74 //#pragma push
75 //#pragma pack(4)
76 #pragma pack(push,4)
77 
78 struct ip_hdr {
79  /* version / header length */
81  /* type of service */
83  /* total length */
85  /* identification */
87  /* fragment offset field */
89 #define IP_RF 0x8000U /* reserved fragment flag */
90 #define IP_DF 0x4000U /* don't fragment flag */
91 #define IP_MF 0x2000U /* more fragments flag */
92 #define IP_OFFMASK 0x1fffU /* mask for fragmenting bits */
93  /* time to live */
95  /* protocol*/
97  /* checksum */
99  /* source and destination IP addresses */
103 
104 //#pragma pop
105 #pragma pack(pop)
106 
108 #ifdef PACK_STRUCT_USE_INCLUDES
109 # include "arch/epstruct.h"
110 #endif
111 
112 /* Macros to get struct ip_hdr fields: */
113 #define IPH_V(hdr) ((hdr)->_v_hl >> 4)
114 #define IPH_HL(hdr) ((hdr)->_v_hl & 0x0f)
115 #define IPH_HL_BYTES(hdr) ((u8_t)(IPH_HL(hdr) * 4))
116 #define IPH_TOS(hdr) ((hdr)->_tos)
117 #define IPH_LEN(hdr) ((hdr)->_len)
118 #define IPH_ID(hdr) ((hdr)->_id)
119 #define IPH_OFFSET(hdr) ((hdr)->_offset)
120 #define IPH_OFFSET_BYTES(hdr) ((u16_t)((lwip_ntohs(IPH_OFFSET(hdr)) & IP_OFFMASK) * 8U))
121 #define IPH_TTL(hdr) ((hdr)->_ttl)
122 #define IPH_PROTO(hdr) ((hdr)->_proto)
123 #define IPH_CHKSUM(hdr) ((hdr)->_chksum)
124 
125 /* Macros to set struct ip_hdr fields: */
126 #define IPH_VHL_SET(hdr, v, hl) (hdr)->_v_hl = (u8_t)((((v) << 4) | (hl)))
127 #define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos)
128 #define IPH_LEN_SET(hdr, len) (hdr)->_len = (len)
129 #define IPH_ID_SET(hdr, id) (hdr)->_id = (id)
130 #define IPH_OFFSET_SET(hdr, off) (hdr)->_offset = (off)
131 #define IPH_TTL_SET(hdr, ttl) (hdr)->_ttl = (u8_t)(ttl)
132 #define IPH_PROTO_SET(hdr, proto) (hdr)->_proto = (u8_t)(proto)
133 #define IPH_CHKSUM_SET(hdr, chksum) (hdr)->_chksum = (chksum)
134 
135 
136 #ifdef __cplusplus
137 }
138 #endif
139 
140 #endif /* LWIP_HDR_PROT_IP4_H */
#define PACK_STRUCT_END
Definition: arch.h:316
uint32_t u32_t
Definition: arch.h:129
uint8_t u8_t
Definition: arch.h:125
#define PACK_STRUCT_BEGIN
Definition: arch.h:307
uint16_t u16_t
Definition: arch.h:127
PACK_STRUCT_BEGIN struct ip4_addr_packed PACK_STRUCT_STRUCT
typedefPACK_STRUCT_END struct ip4_addr_packed ip4_addr_p_t
Definition: ip4.h:61
Definition: ip4.h:53
PACK_STRUCT_FIELD(u32_t addr)
Definition: ip4.h:78
PACK_STRUCT_FLD_8(u8_t _proto)
PACK_STRUCT_FIELD(u16_t _offset)
PACK_STRUCT_FLD_8(u8_t _v_hl)
PACK_STRUCT_FIELD(u16_t _chksum)
PACK_STRUCT_FIELD(u16_t _id)
PACK_STRUCT_FLD_8(u8_t _tos)
PACK_STRUCT_FLD_S(ip4_addr_p_t src)
PACK_STRUCT_FIELD(u16_t _len)
PACK_STRUCT_FLD_S(ip4_addr_p_t dest)
PACK_STRUCT_FLD_8(u8_t _ttl)