Re: [twsocket] TWSocket and data packet length

2013-02-20 Thread P-E
Hello, In  addition  to François answer, the max packet size is something you may change in tcp settings at system level. Usually the packet size (called "MTU") has a 1500 byte default size. If  you  try to send a 2500 byte packet then this packet will probably be fragmented into 2 packets as yo

Re: [twsocket] TWSocket and data packet length

2013-02-20 Thread Frédéric SCHENCKEL
Thanks François for your help ! I will try this tomorrow... Just to be sure I'm not asking in the wrong direction, this already worked with my program a few weeks ago... And now without changing anything (or nothing consciously at least !) it doesn't work anymore. Attached just 2 wireshark capt

Re: [twsocket] TWSocket and data packet length

2013-02-20 Thread François Piette
>I need to send a data packet in one chunck. >Today the datas are splitted in two chunks, one of 1500 (the MTU limit) and another one for the rest. > I'm not able to go over this 1500 limit. I know it's possible because I have another program how does it like this What you ask is to use Jumbo Fram

[twsocket] TWSocket and data packet length

2013-02-20 Thread Frédéric SCHENCKEL
Hello, I need to send a data packet in one chunck. Today the datas are splitted in two chunks, one of 1500 (the MTU limit) and another one for the rest. I'm not able to go over this 1500 limit. I know it's possible because I have another program how does it like this (I don't have the source bu