Cleanups & Implementations to allow IPStack to compile
[tpg/acess2.git] / Modules / IPStack / icmp.c
1 /*
2  * Acess2 IP Stack
3  * - ICMP Handling
4  */
5 #include "ipstack.h"
6 #include "icmp.h"
7
8 // === PROTOTYPES ===
9 void    ICMP_Initialise();
10 void    ICMP_GetPacket(tInterface *Interface, int Length, void *Buffer);
11
12 // === GLOBALS ===
13
14 // === CODE ===
15 /**
16  * \fn void ICMP_Initialise()
17  * \brief Initialise the ICMP Layer
18  */
19 void ICMP_Initialise()
20 {
21         
22 }
23
24 /**
25  * \fn void ICMP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer)
26  * \brief Handles a packet from the IP Layer
27  */
28 void ICMP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer)
29 {
30         //tICMPHeader   *hdr = Buffer;
31         
32 }

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