Re: [twsocket] TCP question

2006-09-03 Thread Francois PIETTE
ailto:[EMAIL PROTECTED] On > Behalf Of Kris Leech > Sent: 03 September 2006 11:38 > To: ICS support mailing > Subject: Re: [twsocket] TCP question > > With the HTTP Server though you will get the whole HTTP request even if > it has been split up in to multiple packets at the TCP

Re: [twsocket] TCP question

2006-09-03 Thread Dan
To: ICS support mailing Subject: Re: [twsocket] TCP question With the HTTP Server though you will get the whole HTTP request even if it has been split up in to multiple packets at the TCP level? Markus Humm wrote: >Hello, > >if a client on a LAN sends a packet with e.g. 512 Bytes and T

Re: [twsocket] TCP question

2006-09-03 Thread Francois PIETTE
> With the HTTP Server though you will get the > whole HTTP request even if it has been split up in to > multiple packets at the TCP level? Is it a statement or a question ? If it is a question, please reformulate. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [

Re: [twsocket] TCP question

2006-09-03 Thread Kris Leech
With the HTTP Server though you will get the whole HTTP request even if it has been split up in to multiple packets at the TCP level? Markus Humm wrote: >Hello, > >if a client on a LAN sends a packet with e.g. 512 Bytes and TCP splits >it up internaly to e.g. 4x128 Bytes will the receiver get 4x

Re: [twsocket] TCP question

2006-09-02 Thread Francois PIETTE
> if a client on a LAN sends a packet with e.g. 512 Bytes and TCP splits > it up internaly to e.g. 4x128 Bytes will the receiver get 4x the > OnDataAvailable event, or 1x with the whole 512 Byte? You can't predict. The only thing which is sure is that you'll receive all data in correct order. Pac

[twsocket] TCP question

2006-09-02 Thread Markus Humm
Hello, if a client on a LAN sends a packet with e.g. 512 Bytes and TCP splits it up internaly to e.g. 4x128 Bytes will the receiver get 4x the OnDataAvailable event, or 1x with the whole 512 Byte? So needs the sender to have a larger buffer to be able to concatenate such packets before he can che