Difference between revisions of "TWSocket"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
*'''inheritance''' | *'''inheritance''' | ||
− | TWSocket component is implementing the TCP protocol described in RFC [http://rfc.net/rfc793.html 793] and and UDP protocol described in RFC [http://rfc.net/rfc768.html 768]. Both protocols are encaptulated by the IP protocol described in RFC [http://rfc.net/rfc791.html 791]. | + | TWSocket component is implementing the TCP protocol described in RFC [http://rfc.net/rfc793.html 793] and and UDP protocol described in RFC [http://rfc.net/rfc768.html 768]. Both protocols are encaptulated by the IP protocol described in RFC [http://rfc.net/rfc791.html 791]. TWSocket 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. | 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. |
Revision as of 20:00, 19 February 2006
Main page -> ICS component reference -> TWSocket
Contents
Overview
- unit WSocket.pas
- inheritance
TWSocket component is implementing the TCP protocol described in RFC 793 and and UDP protocol described in RFC 768. Both protocols are encaptulated by the IP protocol described in RFC 791. TWSocket 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