TTCPSocket
From Ultibo.org
Return to Unit TCP
Description
To be documented
Class definitions
[Expand]
TTCPSocket = class(TProtocolSocket)
Function declarations
[Expand]
constructor TTCPSocket.Create(AProtocol:TNetworkProtocol; ATransport:TNetworkTransport);
Description: To be documented
[Expand]
function TTCPSocket.GetOption(ALevel,AOptName:Integer; AOptValue:PChar; var AOptLength:Integer):Integer;
Description: To be documented
[Expand]
function TTCPSocket.SetOption(ALevel,AOptName:Integer; AOptValue:PChar; AOptLength:Integer):Integer;
Description: To be documented
[Expand]
function TTCPSocket.IoCtl(ACommand:DWORD; var AArgument:u_long):Integer;
Description: To be documented
[Expand]
function TTCPSocket.IsConnected(ALocalAddress,ARemoteAddress:Pointer; ALocalPort,ARemotePort:Word; ABroadcast:Boolean):Boolean;
Description: Check if this TCP Socket is Connected to the Host specified by RemoteAddress/Port
[Expand]
function TTCPSocket.IsListening(ALocalAddress,ARemoteAddress:Pointer; ALocalPort,ARemotePort:Word; ABroadcast:Boolean):Boolean;
Description: Check if this TCP Socket is Listening on the LocalAddress/Port specified
[Expand]
function TTCPSocket.Listen:Boolean;
Description: Used by Listen to setup the listening state
[Expand]
function TTCPSocket.Connect:Boolean;
Description: Used by Connect to initiate outbound connection and Used by RecvSegment to respond to inbound connection
[Expand]
function TTCPSocket.Reconnect:Boolean;
Description: Used by Connect to retry outbound connection
[Expand]
function TTCPSocket.Disconnect:Boolean;
Description: Used by CloseSocket/Shutdown to terminate outbound connection
[Expand]
function TTCPSocket.Accept(APeek,ALock:Boolean; AState:LongWord):TTCPSocket;
Description: Used by Accept/Select to receive an inbound connection
[Expand]
function TTCPSocket.RecvSegment(ASequence,AAcknowledge:LongWord; AWindow,AUrgent:Word; AFlags:Byte; AData:Pointer; ASize:Word):Boolean;
Description: Used by Segment Handler to feed segments/acks to the Buffers
[Expand]
function TTCPSocket.SendSegment(var ASequence,AAcknowledge:LongWord; var AWindow,AUrgent:Word; var AFlags:Byte; var AData:Pointer; var ASize:Word):Boolean;
Description: Used by Process Socket to get segments/acks for Sending
Return to Unit Reference