This is a discussion on Re: ipf 4.1.13 + NAT + FTP proxy = window scaling problem within the IPFilter forums, part of the System Security and Security Related category; This is a multi-part message in MIME format. --------------060403020609000804060007 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
This is a multi-part message in MIME format.
--------------060403020609000804060007 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit ok, please apply the attach patch so I can collect some information from the kernel. Darren --------------060403020609000804060007 Content-Type: text/plain; name="statedebug.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="statedebug.diff" Index: ip_state.c ================================================== ================= RCS file: /devel/CVS/IP-Filter/ip_state.c,v retrieving revision 2.186.2.50 diff -c -r2.186.2.50 ip_state.c *** ip_state.c 18 Dec 2006 15:53:40 -0000 2.186.2.50 --- ip_state.c 19 Dec 2006 15:41:34 -0000 *************** *** 1672,1677 **** --- 1672,1688 ---- tdata->td_maxend = ack + win; return 1; } + + printf("fdata:maxend %u end %u\n", + fdata->td_maxend, end); + printf("fdata:end %u seq %u\n", + fdata->td_end, seq); + printf("fdata:winflags %x winscale %d\n", + fdata->td_winflags, fdata->td_winscale); + printf("tdata:winflags %x winscale %d\n", + tdata->td_winflags, tdata->td_winscale); + printf("ack %u ackskew %d win %d << %d maxwin %d\n", + ack, ackskew, win, fdata->td_winscale, maxwin); return 0; } --------------060403020609000804060007-- |