summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-16 01:37:40 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-16 01:37:40 +0000
commit83b74ef7bf58f8f26dc2f70e4a68b9f240b1fb99 (patch)
tree057445044846c10fe2cd2906185271e0068778de /nuttx/include
parent6353b7f4d277bc2145ad408e349f2a9a98c8c397 (diff)
downloadpx4-nuttx-83b74ef7bf58f8f26dc2f70e4a68b9f240b1fb99.tar.gz
px4-nuttx-83b74ef7bf58f8f26dc2f70e4a68b9f240b1fb99.tar.bz2
px4-nuttx-83b74ef7bf58f8f26dc2f70e4a68b9f240b1fb99.zip
Fix SLIP bug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3385 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/net/uip/uip-tcp.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/nuttx/include/net/uip/uip-tcp.h b/nuttx/include/net/uip/uip-tcp.h
index ee525c854..2fcf7390c 100644
--- a/nuttx/include/net/uip/uip-tcp.h
+++ b/nuttx/include/net/uip/uip-tcp.h
@@ -430,8 +430,8 @@ extern int uip_backlogdelete(FAR struct uip_conn *conn, FAR struct uip_conn *blc
/* Restart the current connection, if is has previously been stopped
* with uip_stop().
*
- * This function will open the receiver's window again so that we
- * start receiving data for the current connection.
+ * This function will open the receiver's window again so that we start
+ * receiving data for the current connection.
*/
#define uip_restart(conn,f) \
@@ -446,13 +446,12 @@ extern int uip_backlogdelete(FAR struct uip_conn *conn, FAR struct uip_conn *blc
#define uip_initialmss(conn) ((conn)->initialmss)
-/* Get the current maxium segment size that can be sent on the current
+/* Get the current maximum segment size that can be sent on the current
* connection.
*
- * The current maxiumum segment size that can be sent on the
- * connection is computed from the receiver's window and the MSS of
- * the connection (which also is available by calling
- * uip_initialmss()).
+ * The current maxiumum segment size that can be sent on the connection is
+ * computed from the receiver's window and the MSS of the connection (which
+ * also is available by calling uip_initialmss()).
*/
#define uip_mss(conn) ((conn)->mss)