TPingClient

From Ultibo.org
Jump to: navigation, search

Return to Unit Services


Description


To be documented

Class definitions



[Expand]

TPingClient = class(TWinsock2RAWClient)


Function declarations



[Expand]
constructor TPingClient.Create;
Description: Constructor for TPingClient class


[Expand]
procedure TPingClient.SetSize(ASize:LongWord);
Description: Set the size in bytes of the data for the ping request


[Expand]
procedure TPingClient.SetCount(ACount:LongWord);
Description: Set the number of ping requests to perform


[Expand]
procedure TPingClient.SetTimeout(ATimeout:LongWord);
Description: Set the time to wait for a reply to each request (Milliseconds)


[Expand]
procedure TPingClient.SetTimeToLive(ATimeToLive:Byte);
Description: Set the time to live in hops for each request


[Expand]
procedure TPingClient.SetNoFragment(ANoFragment:Boolean);
Description: Set the don't fragment bit in the header of each request


[Expand]
function TPingClient.GetLastCount:LongWord;
Description: Get the current count after the latest request


[Expand]
function TPingClient.GetErrorCode:LongInt;
Description: Get the error code from the latest request


[Expand]
function TPingClient.GetErrorText:String;
Description: Get the error message from the latest request


[Expand]
procedure TPingClient.ResetPing;
Description: Reset the state and clear the current ping request


[Expand]
function TPingClient.FirstPing(const AHost:String):Boolean;
Description: Start a new ping sequence to the specified host or address


[Expand]
function TPingClient.NextPing:Boolean;
Description: Continue pinging the current address with the current parameters


Return to Unit Reference