Difference between revisions of "TWinsock2TCPSocket"
From Ultibo.org
(Created page with "Return to Unit Winsock2 __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-...") |
|||
Line 37: | Line 37: | ||
|- | |- | ||
| <code>FSegmentSize:Integer;</code> | | <code>FSegmentSize:Integer;</code> | ||
− | |||
− | |||
− | |||
| | | | ||
|- | |- | ||
Line 64: | Line 61: | ||
|- | |- | ||
| <code>procedure SetSegmentSize(ASegmentSize:Integer);</code> | | <code>procedure SetSegmentSize(ASegmentSize:Integer);</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>function GetMaxSegmentSize:LongWord;</code> | ||
| | | | ||
|- | |- | ||
Line 72: | Line 72: | ||
|- | |- | ||
| <code>FBacklog:Integer;</code> | | <code>FBacklog:Integer;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>FMaxSegmentSize:LongWord;</code> | ||
| | | | ||
|- | |- | ||
Line 111: | Line 114: | ||
| | | | ||
|- | |- | ||
− | | <code>property MaxSegmentSize:LongWord read | + | | <code>property MaxSegmentSize:LongWord read GetMaxSegmentSize write SetMaxSegmentSize;</code> |
| | | | ||
|- | |- | ||
Line 220: | Line 223: | ||
<br /> | <br /> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
− | <pre style="border: 0; padding-bottom:0px;">procedure TWinsock2TCPSocket. | + | <pre style="border: 0; padding-bottom:0px;">procedure TWinsock2TCPSocket.GetMaxSegmentSize:LongWord;</pre> |
+ | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | ! Note | ||
+ | | None documented | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
+ | <pre style="border: 0; padding-bottom:0px;">procedure TWinsock2TCPSocket.MaxSegmentSize:LongWord read GetMaxSegmentSize write SetMaxSegmentSize;</pre> | ||
<div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> |
Latest revision as of 04:37, 23 March 2023
Return to Unit Winsock2
Description
To be documented
Class definitions
[Expand]
TWinsock2TCPSocket = class(TWinsock2Socket)
Function declarations
[Expand]
procedure TWinsock2TCPSocket.SetSocketType(ASocketType:Integer);
Description: To be documented
[Expand]
procedure TWinsock2TCPSocket.SetUseKeepalive(AUseKeepalive:Boolean);
Description: To be documented
[Expand]
procedure TWinsock2TCPSocket.SetSegmentSize(ASegmentSize:Integer);
Description: To be documented
[Expand]
procedure TWinsock2TCPSocket.MaxSegmentSize:LongWord read GetMaxSegmentSize write SetMaxSegmentSize;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.Listen(ABacklog:Integer):LongInt;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.ReadFromSocket(AData:Pointer; ASize:Integer):LongInt;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.WriteToSocket(AData:Pointer; ASize:Integer):LongInt;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.ReadFromSocketEx(AData:Pointer; ASize:Integer; var ACount:Integer; var AClosed:Boolean; AWait:Boolean; ATimeout:Integer):LongInt;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.WriteToSocketEx(AData:Pointer; ASize:Integer; var ACount:Integer; AWait:Boolean; ATimeout:Integer):LongInt;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.ReadData(AData:Pointer; ACount:Integer):Boolean;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.WriteData(AData:Pointer; ACount:Integer):Boolean;
Description: To be documented
[Expand]
function TWinsock2TCPSocket.ReadAvailable(AData:Pointer; ASize:Integer; var ACount:Integer; var AClosed:Boolean):Boolean;
Description: To be documented
Return to Unit Reference