Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Tools / NetTest_Runner / include / arp.h
1 /*
2  */
3 #ifndef _ARP_H_
4 #define _ARP_H_
5
6 #include <stddef.h>
7 #include <stdbool.h>
8
9
10 extern void ARP_SendRequest(int IfNum, const void *IPv4Addr);
11 extern void ARP_SendResponse(int IfNum, const void *IPv4Addr, const void *MacAddr);
12 extern bool ARP_Pkt_IsResponse(size_t Len, const void *Packet, const void *ExpectedIP, const void *ExpectedMac);
13 extern bool ARP_Pkt_IsRequest(size_t Len, const void *Packet, const void *ExpectedIP);
14
15 #endif
16

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