Difference between revisions of "TWinsock2UDPServer"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit Winsock2 __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-...")
 
 
Line 19: Line 19:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
|colspan="2"|Note: Datagrams Server classes
+
|colspan="2"|Note: Datagram Server classes
 
|-
 
|-
 
|colspan="2"|&nbsp;
 
|colspan="2"|&nbsp;

Latest revision as of 04:23, 6 June 2018

Return to Unit Winsock2


Description


To be documented

Class definitions



[Expand]

TWinsock2UDPServer = class(TWinsock2UDPSocket)


Function declarations



[Expand]
constructor TWinsock2UDPServer.Create(AListener:TWinsock2UDPListener);
Description: To be documented


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


[Expand]
procedure TWinsock2UDPServer.SetUseListener(AUseListener:Boolean);
Description: To be documented


[Expand]
function TWinsock2UDPServer.GetData:Pointer;
Description: To be documented


[Expand]
function TWinsock2UDPServer.GetSize:Integer;
Description: To be documented


[Expand]
function TWinsock2UDPServer.GetCount:Integer;
Description: To be documented


[Expand]
procedure TWinsock2UDPServer.SetBuffer(ABuffer:TWinsock2UDPServerBuffer);
Description: To be documented


[Expand]
procedure TWinsock2UDPServer.SetLastError(ALastError:LongInt);
Description: To be documented


[Expand]
function TWinsock2UDPServer.RecvData(AData:Pointer; ACount:Integer):Integer;
Description: To be documented


[Expand]
function TWinsock2UDPServer.SendData(AData:Pointer; ACount:Integer):Integer; 
Description: To be documented


[Expand]
function TWinsock2UDPServer.BroadcastData(APort:Word; AData:Pointer; ACount:Integer):Integer; 
Description: To be documented


[Expand]
function TWinsock2UDPServer.RecvDataFrom(var AHost:String; var APort:Word; AData:Pointer; ACount:Integer):Integer;
Description: To be documented


[Expand]
function TWinsock2UDPServer.SendDataTo(const AHost:String; APort:Word; AData:Pointer; ACount:Integer):Integer; 
Description: To be documented


[Expand]
function TWinsock2UDPServer.BroadcastDataTo(const AAddress:String; APort:Word; AData:Pointer; ACount:Integer):Integer; 
Description: To be documented


Return to Unit Reference