summaryrefslogtreecommitdiff
path: root/nuttx/net/tcp/tcp.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-06 16:10:26 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-06 16:10:26 -0600
commit02fcad9f51a6919c21ca44ed0c417446bb4082c9 (patch)
tree4f09be381f2f799ebf1fc98712c04efba831d3c0 /nuttx/net/tcp/tcp.h
parent47df79c8e4a1ce4809f5213d63f7c26d4d8d9cb7 (diff)
downloadpx4-nuttx-02fcad9f51a6919c21ca44ed0c417446bb4082c9.tar.gz
px4-nuttx-02fcad9f51a6919c21ca44ed0c417446bb4082c9.tar.bz2
px4-nuttx-02fcad9f51a6919c21ca44ed0c417446bb4082c9.zip
NET: Rename TCP state values: UIP_ -> TCP_
Diffstat (limited to 'nuttx/net/tcp/tcp.h')
-rw-r--r--nuttx/net/tcp/tcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/net/tcp/tcp.h b/nuttx/net/tcp/tcp.h
index 77e7e3014..d9bb586cc 100644
--- a/nuttx/net/tcp/tcp.h
+++ b/nuttx/net/tcp/tcp.h
@@ -154,7 +154,7 @@ struct tcp_conn_s
sq_queue_t write_q; /* Write buffering for segments */
sq_queue_t unacked_q; /* Write buffering for un-ACKed segments */
uint16_t expired; /* Number segments retransmitted but not yet ACKed,
- * it can only be updated at UIP_ESTABLISHED state */
+ * it can only be updated at TCP_ESTABLISHED state */
uint16_t sent; /* The number of bytes sent (ACKed and un-ACKed) */
uint32_t isn; /* Initial sequence number */
#endif