summaryrefslogtreecommitdiff
path: root/nuttx/net/uip/uip_tcpinput.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-27 19:50:35 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-27 19:50:35 +0000
commit34abeda54d7093df62fc2808601c7d7e0bb2ab1c (patch)
tree84593559b23d580c9330f7c2ca516069a166c789 /nuttx/net/uip/uip_tcpinput.c
parenta500a9ab6d73b61328c3e42e4b1e103ad0656e07 (diff)
downloadpx4-nuttx-34abeda54d7093df62fc2808601c7d7e0bb2ab1c.tar.gz
px4-nuttx-34abeda54d7093df62fc2808601c7d7e0bb2ab1c.tar.bz2
px4-nuttx-34abeda54d7093df62fc2808601c7d7e0bb2ab1c.zip
Add support for the Atollic Pro toolchain; Change extension .ihx to .hex to be better compatible with most of the rest of the world
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4431 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/net/uip/uip_tcpinput.c')
-rw-r--r--nuttx/net/uip/uip_tcpinput.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/nuttx/net/uip/uip_tcpinput.c b/nuttx/net/uip/uip_tcpinput.c
index 5dc3435cc..593f55b55 100644
--- a/nuttx/net/uip/uip_tcpinput.c
+++ b/nuttx/net/uip/uip_tcpinput.c
@@ -179,13 +179,9 @@ void uip_tcpinput(struct uip_driver_s *dev)
/* The connection structure was successfully allocated. Now see if
* there is an application waiting to accept the connection (or at
* least queue it it for acceptance).
- *
- * TCP state machine should move to the ESTABLISHED state only after
- * it has received ACK from the host.
*/
conn->crefs = 1;
-
if (uip_accept(dev, conn, tmp16) != OK)
{
/* No, then we have to give the connection back */
@@ -194,6 +190,15 @@ void uip_tcpinput(struct uip_driver_s *dev)
uip_tcpfree(conn);
conn = NULL;
}
+ else
+ {
+ /* TCP state machine should move to the ESTABLISHED state only after
+ * it has received ACK from the host. This needs to be investigated
+ * further.
+ */
+
+ conn->tcpstateflags = UIP_ESTABLISHED;
+ }
}
if (!conn)