TWinsock2Socket

From Ultibo.org
Jump to: navigation, search

Return to Unit Winsock2


Description


To be documented

Class definitions



[Expand]

TWinsock2Socket = class(TListObject)


Function declarations



[Expand]
constructor TWinsock2Socket.Create;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetFamily(AFamily:Integer);
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetSocketType(ASocketType:Integer);
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetProtocol(AProtocol:Integer);
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetBoundPort(ABoundPort:Word);
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetBoundAddress(const ABoundAddress:String);
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetReuseAddress(AReuseAddress:Boolean);
Description: To be documented


[Expand]
function TWinsock2Socket.GetLocalPort:Word;
Description: To be documented


[Expand]
function TWinsock2Socket.GetLocalHost:String;
Description: To be documented


[Expand]
function TWinsock2Socket.GetLocalAddress:String;
Description: To be documented


[Expand]
function TWinsock2Socket.GetLocalAddresses:TStrings;
Description: To be documented


[Expand]
function TWinsock2Socket.GetSendSize:Integer;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetSendSize(ASize:Integer);
Description: To be documented


[Expand]
function TWinsock2Socket.GetReceiveSize:Integer;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetReceiveSize(ASize:Integer);
Description: To be documented


[Expand]
function TWinsock2Socket.GetSendTimeout:Integer;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetSendTimeout(ATimeout:Integer);
Description: To be documented


[Expand]
function TWinsock2Socket.GetReceiveTimeout:Integer;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetReceiveTimeout(ATimeout:Integer);
Description: To be documented


[Expand]
function TWinsock2Socket.GetConnectTimeout:Integer;
Description: To be documented


[Expand]
procedure TWinsock2Socket.SetConnectTimeout(ATimeout:Integer);
Description: To be documented


[Expand]
function TWinsock2Socket.GetBroadcastAddress:String;
Description: To be documented


[Expand]
function TWinsock2Socket.AllocateFamily:Boolean;
Description: Check Family and Bound Address, normalise as needed


[Expand]
function TWinsock2Socket.AllocateAddress(var ALength:Integer):PSockAddr;
Description: Allocate s socket address structure for the current family


[Expand]
function TWinsock2Socket.ReleaseAddress(var ASockAddr:PSockAddr; var ALength:Integer; ALastError:Boolean = True):Boolean;
Description: Free a socket address structure allocated by AllocateAddress or AddressToSockAddr


[Expand]
function TWinsock2Socket.AllocateBoundAddress(var ALength:Integer):PSockAddr;
Description: Allocate a socket address structure for the bound address and port


[Expand]
function TWinsock2Socket.AllocateSocket(ASocketType:Integer):TSocket;
Description: To be documented


[Expand]
function TWinsock2Socket.Bind:LongInt;
Description: To be documented


[Expand]
function TWinsock2Socket.SockAddrToPort(ASockAddr:PSockAddr; ALength:Integer):Word;
Description: Convert a socket adress structure to a numeric port


[Expand]
function TWinsock2Socket.SockAddrToAddress(ASockAddr:PSockAddr; ALength:Integer):String;
Description: Convert a socket address structure to a numeric address


[Expand]
function TWinsock2Socket.PortToSockAddr(APort:Word; ASockAddr:PSockAddr; ALength:Integer):Boolean;
Description: Convert a numeric port to a socket adress structure


[Expand]
function TWinsock2Socket.AddressToSockAddr(const AAddress:String; var ALength:Integer):PSockAddr;
Description: Convert a numeric address to a socket address structure


[Expand]
function TWinsock2Socket.Connected:Boolean;
Description: To be documented


[Expand]
function TWinsock2Socket.Shutdown:Boolean;
Description: To be documented


[Expand]
function TWinsock2Socket.Disconnect:Boolean;
Description: To be documented


[Expand]
function TWinsock2Socket.CloseSocket:Boolean;
Description: To be documented


[Expand]
function TWinsock2Socket.ResolveHost(const AHost:String):String;
Description: Resolve a hostname to a numeric address


[Expand]
function TWinsock2Socket.ResolveFamily(const AAddress:String):Integer;
Description: Resolve a numeric address to an address family


[Expand]
function TWinsock2Socket.ResolveAddress(const AAddress:String; ANumeric:Boolean = False):String;
Description: Resolve a numeric address to a hostname


[Expand]
function TWinsock2Socket.ResolveHostEx(const AHost:String; AFamily:Integer; AAll:Boolean):TStrings;
Description: Resolve a hostname to a numeric address or addresses in the family specified or all families


Return to Unit Reference