Board index » cppbuilder » IO Handlers
Vladimir
![]() CBuilder Developer |
Vladimir
![]() CBuilder Developer |
IO Handlers2007-09-14 01:56:33 PM cppbuilder69 Are there any good description-examples how to use IOhandlers? Does "Indy in depth" book has such description? |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-14 03:40:00 PM
Re:IO Handlers
"Vladimir" < XXXX@XXXXX.COM >wrote in message
QuoteAre there any good description-examples how to use IOhandlers? sufficient for most operations. The only time you really need to deal with them manually is if you want to use SSL or streaming (such as for recording/playback) QuoteDoes "Indy in depth" book has such description? Gambit |
Vladimir Zhuchko
![]() CBuilder Developer |
2007-09-14 07:10:32 PM
Re:IO Handlers
Remy Lebeau (TeamB) wrote:
Quote>Are there any good description-examples how to use IOhandlers? try { TCPCommand cmnd(FAddr, FCommand); TCPClient->Connect(); TCPClient->WriteBuffer(cmnd->c_str(), cmnd.len()); //, true); // it seems that TCPClient will try to write buffer before real //connection to the server, how can I avoid this? } __finally { TCPClient->Disconnect(); Sender->Terminate(); // Stop(); } {smallsort} |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2007-09-15 01:44:02 AM
Re:IO Handlers
"Vladimir Zhuchko" < XXXX@XXXXX.COM >wrote in message
Quoteit seems that TCPClient will try to write buffer before real |