Author: cgutman
Date: Sat Aug 6 23:13:30 2011
New Revision: 53107
URL:
http://svn.reactos.org/svn/reactos?rev=53107&view=rev
Log:
[LWIP]
- Remove some unintended changes from the last commit
Modified:
branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/tcp_out.c
Modified: branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/tcp_out.c
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/TcpIpDriver/lib/drive…
==============================================================================
--- branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/tcp_out.c [iso-8859-1]
(original)
+++ branches/GSoC_2011/TcpIpDriver/lib/drivers/lwip/src/core/tcp_out.c [iso-8859-1] Sat
Aug 6 23:13:30 2011
@@ -950,7 +950,6 @@
}
#endif /* TCP_CWND_DEBUG */
/* data available and window allows it to be sent? */
- if (seg) DbgPrint("%d <= %d\n", (ntohl(seg->tcphdr->seqno) -
pcb->lastack + seg->len), wnd);
while (seg != NULL &&
ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
LWIP_ASSERT("RST not expected here!",
@@ -964,7 +963,6 @@
*/
if((tcp_do_output_nagle(pcb) == 0) &&
((pcb->flags & (TF_NAGLEMEMERR | TF_FIN)) == 0)){
- DbgPrint("-----------------> NOT SENDING DUE TO NAGLE %d\n",
tcp_do_output_nagle(pcb));
break;
}
#if TCP_CWND_DEBUG