TTCPProtocol
From Ultibo.org
Return to Unit TCP
Description
To be documented
Class definitions
[Expand]
TTCPProtocol = class(TNetworkProtocol)
Function declarations
[Expand]
constructor TTCPProtocol.Create(AManager:TProtocolManager; const AName:String);
Description: To be documented
[Expand]
function TTCPProtocol.PacketHandler(AHandle:THandle; ASource,ADest,APacket:Pointer; ASize:Integer; ABroadcast:Boolean):Boolean;
Description: Process a packet received by a Transport
[Expand]
function TTCPProtocol.SegmentHandler(ASocket:TTCPSocket; ASource,ADest,APacket:Pointer; ASize:Integer):Boolean;
Description: Check Socket state and feed Segments to the Sockets, discarding or resetting invalid Segments
[Expand]
function TTCPProtocol.ResetHandler(ASocket:TTCPSocket; ASource,ADest,APacket:Pointer; ASize:Integer):Boolean;
Description: Send a Reset using the appropriate values from SEQ and ACK
[Expand]
function TTCPProtocol.CloneSocket(ASocket:TTCPSocket; ALocalAddress,ARemoteAddress:Pointer; ALocalPort,ARemotePort:Word; ALock:Boolean; AState:LongWord):TTCPSocket;
Description: Creates a cloned Socket based on the supplied socket with Options etc copied from the original
[Expand]
function TTCPProtocol.GetTCPOptionsSize(ASocket:TTCPSocket; AOptions:Pointer):Word;
Description: Returns the Size of the Options currently in the buffer with padding to 32 bits
[Expand]
function TTCPProtocol.CreateTCPOptions(ASocket:TTCPSocket; AOptions:Pointer; AFlags:Byte):Boolean;
Description: To be documented
[Expand]
function TTCPProtocol.HandleTCPOptions(ASocket:TTCPSocket; AOptions:Pointer; AFlags:Byte):Boolean;
Description: To be documented
[Expand]
function TTCPProtocol.InsertTCPOption(ASocket:TTCPSocket; AOptions:Pointer; AOption:Byte):Boolean;
Description: Inserts the Option into the buffer from the supplied Socket
[Expand]
function TTCPProtocol.ExtractTCPOption(ASocket:TTCPSocket; AOptions:Pointer; AOption:Byte):Boolean;
Description: Extracts the Option from the buffer to the supplied Socket
[Expand]
function TTCPProtocol.SendReset(ASocket:TTCPSocket):Boolean;
Description: Sends an RST in order to abort an existing connection
[Expand]
function TTCPProtocol.SendAcknowledge(ASocket:TTCPSocket):Boolean;
Description: Sends an ACK possibly in response to a bad segment or due to a keep alive etc
[Expand]
function TTCPProtocol.SendSegment(ASocket:TTCPSocket; ASource,ADest:Pointer; ASourcePort,ADestPort:Word; ASequence,AAcknowledge:LongWord; AWindow,AUrgent:Word; AFlags:Byte; AOptions,AData:Pointer; ASize:Integer):Integer;
Description: Send Segment adds the Protocol Header and other details to the Data
[Expand]
function TTCPProtocol.OpenPort(ASocket:TProtocolSocket; APort:Word):Boolean;
Description: To be documented
[Expand]
function TTCPProtocol.ClosePort(ASocket:TProtocolSocket):Boolean;
Description: To be documented
[Expand]
function TTCPProtocol.FindPort(APort:Word; AWrite,ALock:Boolean):TProtocolPort;
Description: Find a protocol port for the specified port number
[Expand]
function TTCPProtocol.SelectCheck(ASource,ADest:PFDSet; ACode:Integer):Integer;
Description: To be documented
[Expand]
function TTCPProtocol.SelectWait(ASocket:TProtocolSocket; ACode:Integer; ATimeout:LongWord):Integer;
Description: To be documented
[Expand]
function TTCPProtocol.Accept(ASocket:TProtocolSocket; ASockAddr:PSockAddr; AAddrLength:PInteger):TProtocolSocket;
Description: BSD compatible Accept
[Expand]
function TTCPProtocol.Bind(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; AAddrLength:Integer):Integer;
Description: BSD compatible Bind
[Expand]
function TTCPProtocol.CloseSocket(ASocket:TProtocolSocket):Integer;
Description: BSD compatible Close Socket
[Expand]
function TTCPProtocol.Connect(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; AAddrLength:Integer):Integer;
Description: BSD compatible Connect
[Expand]
function TTCPProtocol.IoctlSocket(ASocket:TProtocolSocket; ACmd:DWORD; var AArg:u_long):Integer;
Description: BSD compatible IO Control Socket
[Expand]
function TTCPProtocol.GetPeerName(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; var AAddrLength:Integer):Integer;
Description: BSD compatible Get Peer Name (Remote)
[Expand]
function TTCPProtocol.GetSockName(ASocket:TProtocolSocket; var ASockAddr:TSockAddr; var AAddrLength:Integer):Integer;
Description: BSD compatible Get Sock Name (Local)
[Expand]
function TTCPProtocol.GetSockOpt(ASocket:TProtocolSocket; ALevel,AOptName:Integer; AOptValue:PChar; var AOptLength:Integer):Integer;
Description: BSD compatible Get Socket Option
[Expand]
function TTCPProtocol.Listen(ASocket:TProtocolSocket; ABacklog:Integer):Integer;
Description: BSD compatible Listen
[Expand]
function TTCPProtocol.Recv(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer):Integer;
Description: BSD compatible Receive
[Expand]
function TTCPProtocol.RecvFrom(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer; var AFromAddr:TSockAddr; var AFromLength:Integer):Integer;
Description: BSD compatible Receive From
[Expand]
function TTCPProtocol.Send(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer):Integer;
Description: BSD compatible Send
[Expand]
function TTCPProtocol.SendTo(ASocket:TProtocolSocket; var ABuffer; ALength,AFlags:Integer; var AToAddr:TSockAddr; AToLength:Integer):Integer;
Description: BSD compatible Send To
[Expand]
function TTCPProtocol.SetSockOpt(ASocket:TProtocolSocket; ALevel,AOptName:Integer; AOptValue:PChar; AOptLength:Integer):Integer;
Description: BSD compatible Set Socket Option
[Expand]
function TTCPProtocol.Shutdown(ASocket:TProtocolSocket; AHow:Integer):Integer;
Description: BSD compatible Shutdown
[Expand]
function TTCPProtocol.Socket(AFamily,AStruct,AProtocol:Integer):TProtocolSocket;
Description: BSD compatible Socket (Create a new socket)
[Expand]
function TTCPProtocol.AddTransport(ATransport:TNetworkTransport):Boolean;
Description: Add a transport to this protocol
[Expand]
function TTCPProtocol.RemoveTransport(ATransport:TNetworkTransport):Boolean;
Description: Remove a transport from this protocol
[Expand]
function TTCPProtocol.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 TTCPProtocol.FlushSockets(All:Boolean);
Description: Flush sockets from the socket cache
[Expand]
function TTCPProtocol.StartProtocol:Boolean;
Description: Start this protocol ready for sending and receiving
[Expand]
function TTCPProtocol.StopProtocol:Boolean;
Description: Stop this protocol ready for removal
[Expand]
function TTCPProtocol.ProcessProtocol:Boolean;
Description: Process periodic tasks for this protocol
[Expand]
function TTCPProtocol.ProcessSockets:Boolean;
Description: Process periodic tasks for protocol sockets
[Expand]
function TTCPProtocol.ProcessSocket(ASocket:TProtocolSocket):Boolean;
Description: Process periodic tasks for a protocol socket
Return to Unit Reference