Re: [twsocket] Should next ICS version support anything before Delphi XE ?

2012-03-28 Thread Arnaldo Braun
Here the same situation with Delphi 5 (one customer only) and Delphi 7 Em 28-03-2012 17:27, scconsulting escreveu: My customers (small and medium companies) all use Delphi 5, Delphi 7 and Delphi 2007. None of them use XE and they don't plan to pay a mountain of cash to migrate in the

Re: [twsocket] Package Count / Wireshark

2009-09-10 Thread Arnaldo Braun
Hi You can try to modify the normal behavior of TCP by setting wsoTcpNoDelay in TWSocket.ComponentOptions. This can avoid some TCP small packets caching. []s Arnaldo Tobias Rapp escreveu: Alper Albayrak wrote: Monitoring packages arrived, I see that one of the packages (505 byte) is

Re: [twsocket] bug in smtpprot.pas

2007-02-13 Thread Arnaldo Braun
-- Arnaldo Braun Consultoria em Informática mailto:[EMAIL PROTECTED] FLORIANOPOLIS - SC - BRASIL -- Esta mensagem foi verificada pelo sistema de antivírus e acredita-se estar livre de perigo. -- To unsubscribe or change your settings for TWSocket mailing list please goto http

Re: [twsocket] Send one big or a lot of small strings

2005-11-01 Thread Arnaldo Braun
You can force socket faster small packet sending by using TWsocket --- ComponentOptions wsoTcpNoDelay --- true See Microsoft socket help files about possible collateral effects (search setsockopt TCP_NODELAY) Larini wrote: Why this event must be used? I'm testing my application and

Re: [twsocket] Converting Send() and Receive() to Sync

2005-09-23 Thread Arnaldo Braun
Hi Perhaps a small bug??? In the .pas code the variable DoneFlag is not initialized before calling WaitUntilReady(DoneFlag); and then it is tested inside the while loop. The result of the test if DoneFlag then is depending on trash from memory allocated in the stack []s Arnaldo Fastream