From d0cef5c3e03a693460840cfa88bdd183248cf875 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 20 Nov 2007 01:26:34 +0000 Subject: Prep for 0.3.1 release git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@389 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/net/uip/uip-tcpsend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/net/uip') diff --git a/nuttx/net/uip/uip-tcpsend.c b/nuttx/net/uip/uip-tcpsend.c index 02123bc82..ef4a1b7af 100644 --- a/nuttx/net/uip/uip-tcpsend.c +++ b/nuttx/net/uip/uip-tcpsend.c @@ -199,8 +199,8 @@ static void uip_tcpsendcommon(struct uip_driver_s *dev, struct uip_conn *conn) } else { - BUF->wnd[0] = ((CONFIG_NET_TCP_CONNS) >> 8); - BUF->wnd[1] = ((CONFIG_NET_TCP_CONNS) & 0xff); + BUF->wnd[0] = ((CONFIG_NET_RECEIVE_WINDOW) >> 8); + BUF->wnd[1] = ((CONFIG_NET_RECEIVE_WINDOW) & 0xff); } /* Finish the IP portion of the message, calculate checksums and send -- cgit v1.2.3