Adding several modules to the Tree, plus some files that escaped earlier
[tpg/acess2.git] / Modules / IPStack / icmp.h
1 /*
2  * Acess2 IP Stack
3  * - ICMP Handling
4  */
5 #ifndef _ICMP_H_
6 #define _ICMP_H_
7
8 // === TYPEDEFS ===
9 typedef struct sICMPHeader      tICMPHeader;
10
11 // === STRUCTURES ===
12 struct sICMPHeader
13 {
14         Uint8   Type;
15         Uint8   Code;
16         Uint16  Checksum;
17         Uint16  ID;
18         Uint16  Sequence;
19 };
20
21 #endif

UCC git Repository :: git.ucc.asn.au