Martynas has asked for the wisdom of the Perl Monks concerning the following question:
Hello
How I can set scaled window size in packet using Net::RawIP?
I want set window greater than 65535, but window option by setting it to greater value makes window size 0 in packet.
I also tried setting up TCP option 3, but looks like I miss something about how to set it or there is other way how to make window size in a ACK packet greater.
This is my attempt with optset while trying to use different data options :
$packet->optset(tcp=> { type => [(3)], data => [(1)],});Please advice how to make scaled window with a size of 262144 for example.
Thanks, Martynas
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Scaled TCP window with Net::RawIP
by Corion (Patriarch) on Mar 02, 2011 at 10:59 UTC | |
by Martynas (Initiate) on Mar 02, 2011 at 11:48 UTC | |
|
Re: Scaled TCP window with Net::RawIP
by Illuminatus (Curate) on Mar 02, 2011 at 16:01 UTC | |
by Martynas (Initiate) on Mar 02, 2011 at 20:42 UTC | |
by Illuminatus (Curate) on Mar 02, 2011 at 21:15 UTC | |
by Martynas (Initiate) on Mar 02, 2011 at 21:46 UTC | |
by Illuminatus (Curate) on Mar 03, 2011 at 00:37 UTC | |
|