Difference between revisions of "Unit ICMPv6"
From Ultibo.org
								
												
				| Line 4: | Line 4: | ||
=== Description ===  | === Description ===  | ||
----  | ----  | ||
| + | |||
| + | '''Ultibo ICMPv6 (Internet Control Message Protocol version 6) unit'''  | ||
''To be documented''  | ''To be documented''  | ||
Revision as of 05:27, 19 December 2016
Return to Unit Reference
Description
Ultibo ICMPv6 (Internet Control Message Protocol version 6) unit
To be documented
Constants
ICMPv6 specific constants 
 ICMP6_PROTOCOL_* | Note: Some ICMPV6 definitions are in the Protocol or IPv6 modules | |
 ICMP6_PROTOCOL_NAME = 'ICMPV6';
 | 
|
ICMPv6 constants 
 ICMP6_*  ICMP6_TIMEOUT = 0;
 | 
Wait forever on a ICMP6 Read | 
 ICMP6_BUFFER_SIZE = 65536;
 | 
ICMP6 Receive Buffer Size | 
 ICMP6_HEADER_SIZE = 5;
 | 
SizeOf(TICMP6Header); | 
 ICMP6_PACKET_SIZE = 8;
 | 
SizeOf(TICMP6Packet) | 
Type definitions
To be documented
Public variables
To be documented
Function declarations
Initialization functions
procedure ICMP6Init;
Description: To be documented
| Note | None documented | 
|---|
ICMPv6 functions
function CheckICMP6(AFamily:Word; ABuffer:Pointer):Boolean;
Description: Verify that the packet is a valid ICMP6 packet
| Buffer | The complete packet including Transport header | 
|---|
function GetICMP6HeaderOffset(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented
| Buffer | The complete packet including Transport header | 
|---|
function GetICMP6HeaderLength(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented
| Buffer | The complete packet including Transport header | 
|---|
function GetICMP6DataOffset(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented
| Buffer | The complete packet including Transport header | 
|---|
function GetICMP6DataLength(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented
| Buffer | The complete packet including Transport header | 
|---|
function ChecksumICMP6(AFamily:Word; ABuffer:Pointer; AOffset,ALength:Word):Word;
Description: Checksum the ICMP6 Header on Send / Validate the Checksum on Receive
| Note | None documented | 
|---|
Return to Unit Reference