summaryrefslogtreecommitdiff
path: root/nuttx/include/net
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-27 01:01:26 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-11-27 01:01:26 +0000
commita8182f15c4fff323262be45ac4299ca2e6653c73 (patch)
tree693c9af0c0133549ce7ccf6939f57e72f5cf576a /nuttx/include/net
parent879945fac82fa814e2aea7d3eda75174e8fb0bf2 (diff)
downloadnuttx-a8182f15c4fff323262be45ac4299ca2e6653c73.tar.gz
nuttx-a8182f15c4fff323262be45ac4299ca2e6653c73.tar.bz2
nuttx-a8182f15c4fff323262be45ac4299ca2e6653c73.zip
Cosmetic renaming of variables
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3135 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/net')
-rw-r--r--nuttx/include/net/uip/uip-tcp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/include/net/uip/uip-tcp.h b/nuttx/include/net/uip/uip-tcp.h
index 67d051fcf..ee525c854 100644
--- a/nuttx/include/net/uip/uip-tcp.h
+++ b/nuttx/include/net/uip/uip-tcp.h
@@ -127,10 +127,10 @@ struct uip_conn
uip_ipaddr_t ripaddr; /* The IP address of the remote host */
uint16_t lport; /* The local TCP port, in network byte order */
uint16_t rport; /* The remoteTCP port, in network byte order */
- uint8_t rcv_nxt[4]; /* The sequence number that we expect to
+ uint8_t rcvseq[4]; /* The sequence number that we expect to
* receive next */
- uint8_t snd_nxt[4]; /* The sequence number that was last sent by us */
- uint16_t len; /* Length of the data that was previously sent */
+ uint8_t sndseq[4]; /* The sequence number that was last sent by us */
+ uint16_t unacked; /* Number bytes sent but not yet ACKed */
uint16_t mss; /* Current maximum segment size for the
* connection */
uint16_t initialmss; /* Initial maximum segment size for the