TUDPBuffer

From Ultibo.org
Jump to: navigation, search

Return to Unit UDP


Description


To be documented

Class definitions



[Expand]

TUDPBuffer = class(TSocketBuffer)


Function declarations



[Expand]
constructor TUDPBuffer.Create(ASocket:TTransportSocket);
Description: To be documented


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


[Expand]
function TUDPBuffer.AddDatagram(ASize:Integer):Boolean;
Description: Adds a new Datagram as the Last datagram in the Buffer


[Expand]
function TUDPBuffer.RemoveDatagram:Boolean;
Description: Removes the First datagram from the Buffer


[Expand]
procedure TUDPBuffer.FlushDatagrams;
Description: To be documented


[Expand]
procedure TUDPBuffer.SetSize(ASize:LongWord);
Description: Setting the Size clears any current Datagrams


[Expand]
function TUDPBuffer.GetNext:Integer;
Description: To be documented


[Expand]
function TUDPBuffer.GetCount:LongWord;
Description: To be documented


[Expand]
function TUDPBuffer.ReadBuffer(var ABuffer; var ASize:Integer; ARemoteAddress:Pointer; ARemotePort:PWORD; AFlags:Integer):Boolean;
Description: Stored Datagram contains the Data without the Headers


[Expand]
function TUDPBuffer.WriteBuffer(var ABuffer; ASize:Integer; ARemoteAddress:Pointer; ARemotePort:PWORD):Boolean;
Description: Supplied Buffer contains the Data without the Headers


Return to Unit Reference