Difference between revisions of "TWSocket"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | [[Main_Page | Main page]] -> [[ | + | [[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS component reference]] -> TWSocket |
== Overview == | == Overview == | ||
Revision as of 17:10, 19 February 2006
Main page -> ICS component reference -> TWSocket
Contents
Overview
- unit WSocket.pas
- inheritance
TWSocket component is implementing the TCP and UDP protocol described in RFC xxx and RFC xxx. It is used in almost every other ICS component.
TWSocket component can be used as client or a server. For its use as TCP server however TWSocketServer is encouraged because of his advanced features.
Properties
Addr | The host to connect to (client) or the interface to listen on (server). | |
AllSent | ||
BufSize | ||
ComponentOptions | ||
DnsResult | ||
DnsResultList | ||
FlushTimeout | ||
Handle | ||
HSocket | ||
IcsLogger | ||
LastError | ||
LineEcho | ||
LineEdit | ||
LineEnd | ||
LineLength | ||
LineLimit | ||
LineMode | ||
LingerOnOff | ||
LingerTimeout | ||
ListenBacklog | ||
LocalAddr | ||
LocalPort | ||
MultiCast | ||
MultiCastAddrStr | ||
MultiCastIpTTL | ||
MultiThreaded | ||
PeerAddr | ||
PeerPort | ||
Port | ||
PortNum | ||
Proto | ||
RcvdCnt | ||
RcvdCount | ||
RcvdPtr | ||
ReadCount | ||
ReqVerLow | ||
ReqVerHigh | ||
ReuseAddr | ||
SendFlags | ||
SocksAuthentication | ||
SocksLevel | ||
SocksPassword | ||
SocksPort | ||
SocksServer | ||
SocksUsercode | ||
State | ||
Terminated | ||
Text |
Methods
Events
How to