Difference between revisions of "Unit ICMPv6"

From Ultibo.org
Jump to: navigation, search
Line 14: Line 14:
  
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;">
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;">
<div style="font-size: 14px; padding-left: 12px;">'''ICMPv6 specific constants''' <code> ICMP6_PROTOCOL_* </code></div>
+
<div style="font-size: 14px; padding-left: 12px;">'''ICMPv6 protocol''' <code> ICMP6_PROTOCOL_* </code></div>
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
Line 29: Line 29:
 
<br />
 
<br />
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;">
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;">
<div style="font-size: 14px; padding-left: 12px;">'''ICMPv6 constants''' <code> ICMP6_* </code></div>
+
<div style="font-size: 14px; padding-left: 12px;">'''ICMPv6 specific constants''' <code> ICMP6_* </code></div>
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"

Revision as of 05:36, 24 March 2017

Return to Unit Reference


Description


Ultibo ICMPv6 (Internet Control Message Protocol version 6) unit

To be documented

Constants



[Expand]
ICMPv6 protocol ICMP6_PROTOCOL_*


[Expand]
ICMPv6 specific constants ICMP6_*


Type definitions



ICMPv6 header

[Expand]

PICMP6Header = ^TICMP6Header;

TICMP6Header = packed record

ICMPv6 packet

[Expand]

PICMP6Packet = ^TICMP6Packet;

TICMP6Packet = record


Class definitions



ICMPv6 protocol transport

[Expand]

TICMP6ProtocolTransport = class(TProtocolTransport)

ICMPv6 protocol

[Expand]

TICMP6Protocol = class(TNetworkProtocol)

ICMPv6 socket

[Expand]

TICMP6Socket = class(TProtocolSocket)

ICMPv6 buffer

[Expand]

TICMP6Buffer = class(TSocketBuffer)


Public variables


None defined

Function declarations



Initialization functions

[Expand]
procedure ICMP6Init;
Description: To be documented


ICMPv6 functions

[Expand]
function CheckICMP6(AFamily:Word; ABuffer:Pointer):Boolean;
Description: Verify that the packet is a valid ICMP6 packet


[Expand]
function GetICMP6HeaderOffset(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented


[Expand]
function GetICMP6HeaderLength(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented


[Expand]
function GetICMP6DataOffset(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented


[Expand]
function GetICMP6DataLength(AFamily:Word; ABuffer:Pointer):Word;
Description: To be documented


[Expand]
function ChecksumICMP6(AFamily:Word; ABuffer:Pointer; AOffset,ALength:Word):Word;
Description: Checksum the ICMP6 Header on Send / Validate the Checksum on Receive


Return to Unit Reference