TICMP6Protocol

From Ultibo.org
Jump to: navigation, search

Return to Unit ICMPv6


Description


To be documented

Class definitions



[Expand]

TICMP6Protocol = class(TNetworkProtocol)


Function declarations



[Expand]
constructor TICMP6Protocol.Create(AManager:TProtocolManager; const AName:String);
Description: To be documented


[Expand]
destructor TICMP6Protocol.Destroy;
Description: To be documented


[Expand]
function TICMP6Protocol.PacketHandler(AHandle:THandle; ASource,ADest,APacket:Pointer; ASize:Integer; ABroadcast:Boolean):Boolean;
Description: Process a packet received by a Transport


[Expand]
function TICMP6Protocol.ControlHandler(AHandle:THandle; ASource,ADest:Pointer; AProtocol,ACommand,ACode:Word; AAddress,AData:Pointer; ASize:Integer):Boolean;
Description: Process a network control request from a Transport


[Expand]
function TICMP6Protocol.GetNextICMP6Id(AIncrement:Boolean):Word;
Description: Get the next ICMP6 packet id number


[Expand]
function TICMP6Protocol.SelectCheck(ASource,ADest:PFDSet; ACode:Integer):Integer;
Description: To be documented


[Expand]
function TICMP6Protocol.SelectWait(ASocket:TProtocolSocket; ACode:Integer; ATimeout:LongWord):Integer;
Description: To be documented


[Expand]
function TICMP6Protocol.SendPacket(ASocket:TProtocolSocket; ASource,ADest:Pointer; ASourcePort,ADestPort:Word; APacket:PPacketFragment; ASize,AFlags:Integer):Integer;
Description: Send a Packet by adding the Protocol Header and other details to the Data


[Expand]
function TICMP6Protocol.Accept(ASocket:TProtocolSocket; ASockAddr:PSockAddr; AAddrLength:PInteger):TProtocolSocket;
Description: BSD compatible Accept


[Expand]
function TICMP6Protocol.Bind(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; AAddrLength:Integer):Integer;
Description: BSD compatible Bind


[Expand]
function TICMP6Protocol.CloseSocket(ASocket:TProtocolSocket):Integer;
Description: BSD compatible Close Socket


[Expand]
function TICMP6Protocol.Connect(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; AAddrLength:Integer):Integer;
Description: BSD compatible Connect


[Expand]
function TICMP6Protocol.IoctlSocket(ASocket:TProtocolSocket; ACmd:DWORD; var AArg:u_long):Integer;
Description: BSD compatible IO Control Socket


[Expand]
function TICMP6Protocol.GetPeerName(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; var AAddrLength:Integer):Integer;
Description: BSD compatible Get Peer Name (Remote)


[Expand]
function TICMP6Protocol.GetSockName(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; var AAddrLength:Integer):Integer;
Description: BSD compatible Get Sock Name (Local)


[Expand]
function TICMP6Protocol.GetSockOpt(ASocket:TProtocolSocket; ALevel,AOptName:Integer; AOptValue:PChar; var AOptLength:Integer):Integer;
Description: BSD compatible Get Socket Option


[Expand]
function TICMP6Protocol.Listen(ASocket:TProtocolSocket; ABacklog:Integer):Integer;
Description: BSD compatible Listen


[Expand]
function TICMP6Protocol.Recv(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer):Integer;
Description: BSD compatible Receive


[Expand]
function TICMP6Protocol.RecvFrom(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer; var AFromAddr:TSockAddr; var AFromLength:Integer):Integer;
Description: BSD compatible Receive From


[Expand]
function TICMP6Protocol.Send(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer):Integer;
Description: BSD compatible Send


[Expand]
function TICMP6Protocol.SendTo(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer; var AToAddr:TSockAddr; AToLength:Integer):Integer;
Description: BSD compatible Send To


[Expand]
function TICMP6Protocol.SetSockOpt(ASocket:TProtocolSocket; ALevel,AOptName:Integer; AOptValue:PChar; AOptLength:Integer):Integer;
Description: BSD compatible Set Socket Option


[Expand]
function TICMP6Protocol.Shutdown(ASocket:TProtocolSocket; AHow:Integer):Integer;
Description: BSD compatible Shutdown


[Expand]
function TICMP6Protocol.Socket(AFamily,AStruct,AProtocol:Integer):TProtocolSocket;
Description: BSD compatible Socket (Create a new socket)


[Expand]
function TICMP6Protocol.AddTransport(ATransport:TNetworkTransport):Boolean;
Description: Add a transport to this protocol


[Expand]
function TICMP6Protocol.RemoveTransport(ATransport:TNetworkTransport):Boolean;
Description: Remove a transport from this protocol


[Expand]
function TICMP6Protocol.FindSocket(AFamily,AStruct,AProtocol:Word; ALocalAddress,ARemoteAddress:Pointer; ALocalPort,ARemotePort:Word; ABroadcast,AListen,ALock:Boolean; AState:LongWord):TProtocolSocket;
Description: Find a protocol socket based on all relevant parameters


[Expand]
procedure TICMP6Protocol.FlushSockets(All:Boolean);
Description: Flush sockets from the socket cache


[Expand]
function TICMP6Protocol.StartProtocol:Boolean;
Description: Start this protocol ready for sending and receiving


[Expand]
function TICMP6Protocol.StopProtocol:Boolean;
Description: Stop this protocol ready for removal


[Expand]
function TICMP6Protocol.ProcessProtocol:Boolean;
Description: Process periodic tasks for this protocol


Return to Unit Reference