Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Hi Francois Piette, - By the way: If you have no Line Mode then ICS don't do buffering at all. It just uses send of Winsock! This sentence is wrong. TWSocket use a FIFO buffer when you call Send. Whatever data size you send, TWSocket will use a list of buffers (Each having a BufSize

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Hi RTT, which Operationgsystem and Pachlevel are you using? Do you use ICS Version 6 RC1 ? I am using Windows XP with Service Pack3, tested my Client now on 3 Clients with this config. I am using ICS Versoin 6 at RC1. I added my client.exe and server.exe on my server

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Arno Garrels
Markus Mueller wrote: Hello ICS Mailinglist, this is a bugreport that on localhost the windows kernel reads megabytes of data before a TWSocket client can block. This is not specific to TWSocket and it's not a bug but a winsock feature! Beside the fact that you should send smaller data

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Hi Arno Garrels, this is a bugreport that on localhost the windows kernel reads megabytes of data before a TWSocket client can block. This is not specific to TWSocket and it's not a bug but a winsock feature! Beside the fact that you should send smaller data chunks and use

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Arno Garrels
Markus Mueller wrote: I missed to tell that my sentence is only valid if you do TWSocket.Flush;. And there I am true that V6 ICS directly runs send on Winsock to immediatlely send the data. And that was the point: It not buffers internaly but forces to send it immediately to winsock or it

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Francois PIETTE
And there I am true that V6 ICS directly runs send on Winsock to immediatlely send the data. And that was the point: It not buffers internaly but forces to send it immediately to winsock or it blocks. I don't agree, unless a bug has been introduced recently. Send only TRIES to send data. Send

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Francois PIETTE
Any idear why on my Computers it shows but on your computer it blocks much earlier? Maybe be you some kind of proxy, firewall, anti-virus, anti-spam, malware, LSP, VPN and other kind of similar piece of software intercepting TCP trafic and buffering data somewhere. --

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Francois PIETTE schrieb: And there I am true that V6 ICS directly runs send on Winsock to immediatlely send the data. And that was the point: It not buffers internaly but forces to send it immediately to winsock or it blocks. I don't agree, unless a bug has been introduced recently.

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Arno Garrels
Markus Mueller wrote: Hi Arno Garrels, this is a bugreport that on localhost the windows kernel reads megabytes of data before a TWSocket client can block. This is not specific to TWSocket and it's not a bug but a winsock feature! Beside the fact that you should send smaller data chunks

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread RTT
Hi RTT, which Operationgsystem and Pachlevel are you using? Do you use ICS Version 6 RC1 ? I am using Windows XP with Service Pack3, tested my Client now on 3 Clients with this config. I am using ICS Versoin 6 at RC1. I added my client.exe and server.exe on my server

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Hello ICS, I found the problem, it was HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\TcpWindowSize set to 16 Mbyte on my Windows Systems. Thanks for your support and your time! You have helped me very very much! Much regards, Markus Mueller Hi RTT, which

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
The default is that it is not configured. Cause tcp window scaling is also deactivated, I asume it uses the normal tcp maximum of 64 Kbyte. Without the Tcp1323Opts for Windows scaling a higher TCP Window Size don't make sense at all. For more informations see

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Markus Mueller
Hi Arno Garrels, Markus Mueller wrote: The default is that it is not configured. Cause tcp window scaling is also deactivated, I asume it uses the normal tcp maximum of 64 Kbyte. Without the Tcp1323Opts for Windows scaling a higher TCP Window Size don't make sense at all. For more

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Arno Garrels
Markus Mueller wrote: The default is that it is not configured. Cause tcp window scaling is also deactivated, I asume it uses the normal tcp maximum of 64 Kbyte. Without the Tcp1323Opts for Windows scaling a higher TCP Window Size don't make sense at all. For more informations see

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread Arno Garrels
Markus Mueller wrote: Correct, beside the maximum limit of 65,353 in detail: With TCP Window Scaling (RFC 1323) you can use values up to two Gigabytes. But, as I sayed, you have to enable This option via Tcp1323Opts. And both, the client as well as the server, must support this TCP option.

Re: [twsocket] Pause and Resume just not working!

2009-01-24 Thread RTT
Correct, beside the maximum limit of 65,353 in detail: With TCP Window Scaling (RFC 1323) you can use values up to two Gigabytes. I read 1GB From RFC1323: Since the max window is 2**S (where S is the scaling shift count) times at most 2**16 - 1 (the maximum unscaled window), the maximum

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Arno Garrels
Markus Mueller wrote: it buffers sometime within 2-4 MByte before socket.pause does help, my 3 Ghz Dualcore seems to buffer also hunderts of MByte... procedure TCustomWSocket.Pause calls winsock API WSAAsyncSelect. It simply tells winsock to stop posting notification messages. Although

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Markus Müller
Hi Arno Garrels, I looked over the code of THttpCli and if you do not have a connection from localhost to localhost it may work... I expect this in particular cause the read of Megabytes is done within split seconds, also if my program is sleeping (for example on a breakpoint in Delphi). The

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Arno Garrels
Markus Müller wrote: Hi Arno Garrels, I looked over the code of THttpCli and if you do not have a connection from localhost to localhost it may work... I expect this in particular cause the read of Megabytes is done within split seconds, Yes, it is very fast. also if my program is

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Markus Mueller
Hello (again :-)) Arno Garrels, I looked over the code of THttpCli and if you do not have a connection from localhost to localhost it may work... I expect this in particular cause the read of Megabytes is done within split seconds, Yes, it is very fast. so you agree a (at least

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Arno Garrels
Markus Mueller wrote: Hello (again :-)) Arno Garrels, I looked over the code of THttpCli and if you do not have a connection from localhost to localhost it may work... I expect this in particular cause the read of Megabytes is done within split seconds, Yes, it is very fast. so you

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Arno Garrels
Markus Mueller wrote: Ok, this proves that Winsocks is buffering megabytes of data before TWSocket.pause becomes active! Not quite correct, TWSocket.Pause becomes active immediately, however winsock obviously continues to buffer incomming data, in this case I think there's not much you can

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Piotr Dałek
Hello! Hello ICS Mailinglist, this is a bugreport that on localhost the windows kernel reads megabytes of data before a TWSocket client can block. As you can see on the following explanation and the images on http://projekte.priv.de/ics_localhost_bug/ , the problem is the windows

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Markus Mueller
HI Piotr Dałek, yes you are right with your argumentation. I am using TWSocket in a manner generally not allowed, cause message processing and so on is not assured. BUT! - The clients wrote via send to somewhere about 16 Mbytes and if you were true and it would be in buffer of the client then

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Piotr Dałek
Hello! HI Piotr Dałek, yes you are right with your argumentation. I am using TWSocket in a manner generally not allowed, cause message processing and so on is not assured. And we can stop right here. Since I'm a ICS V5 user, I cannot answer to your but's - maybe something has changed in ICS

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread RTT
- The clients wrote via send to somewhere about 16 Mbytes and if you were true and it would be in buffer of the client then the process would must have in Taskmanagers at least 16 MB of memory size. Please look at my screenshot, the server and the client does have just 3.5 MB! I'm not an

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Markus Mueller
- The clients wrote via send to somewhere about 16 Mbytes and if you were true and it would be in buffer of the client then the process would must have in Taskmanagers at least 16 MB of memory size. Please look at my screenshot, the server and the client does have just 3.5 MB! I'm not

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread RTT
If you reproduce my test, simply by compiling and starting server.pas and then compiling and starting client.pas with attached delphi debugger, looking on code line executed step, you can see that socket.flush forces to write out the data via the send call of winsock before it proceeds.

Re: [twsocket] Pause and Resume just not working!

2009-01-23 Thread Francois PIETTE
I have not read all the discussions, but at least this: - By the way: If you have no Line Mode then ICS don't do buffering at all. It just uses send of Winsock! This sentence is wrong. TWSocket use a FIFO buffer when you call Send. Whatever data size you send, TWSocket will use a list of

[twsocket] Pause and Resume just not working!

2009-01-22 Thread Markus Mueller
Hi ICS Mailinglist, I use the V6 Rev1 ICS TWSocket and have a issue with buffering somewhere in ICS and/or Winsock. On localhost or in my local LAN, if I have there a stream to my ICS Server which just pushes data, like the DATA-TCP Connection of ftp, then all data is sent just in some seconds

Re: [twsocket] Pause and Resume just not working!

2009-01-22 Thread Markus Mueller
Hello again I realy don't know why, but on a different machine there is this buffering with unchanged source code NOT. Maybe its my virusscanner or something like this... Sorry for any convenience ende?lp=endep=thMx..search=convenience this may cause... Regards, Markus Mueller Hi ICS

Re: [twsocket] Pause and Resume just not working!

2009-01-22 Thread Markus Mueller
Sorry... I must correct myself again... The problem is still there, on machine with 1,4 Ghz it buffers sometime within 2-4 MByte before socket.pause does help, my 3 Ghz Dualcore seems to buffer also hunderts of MByte... Hello again I realy don't know why, but on a different machine there