aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/uip/uip.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-30 09:48:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-30 09:48:35 +0000
commit0f45b9c8e076483cd546d0bc9c606b73455295c6 (patch)
treed1c38ead3ab0691d6a8e8db2319de93e5bd8bb5a /Projects/Webserver/Lib/uip/uip.c
parent2034141a7eb4d21a738f688b5e35a43793d17fbc (diff)
downloadlufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.gz
lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.bz2
lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.zip
More spell checking of all source files -- correct missed errors, switch to EN-GB spelling dictionary.
Diffstat (limited to 'Projects/Webserver/Lib/uip/uip.c')
-rw-r--r--Projects/Webserver/Lib/uip/uip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Projects/Webserver/Lib/uip/uip.c b/Projects/Webserver/Lib/uip/uip.c
index 9b883a8e9..36053029a 100644
--- a/Projects/Webserver/Lib/uip/uip.c
+++ b/Projects/Webserver/Lib/uip/uip.c
@@ -53,7 +53,7 @@
* statement. While it would be possible to break the uip_process()
* function into many smaller functions, this would increase the code
* size because of the overhead of parameter passing and the fact that
- * the optimier would not be as efficient.
+ * the optimiser would not be as efficient.
*
* The principle is that we have a small buffer, called the uip_buf,
* in which the device driver puts an incoming packet. The TCP/IP
@@ -598,7 +598,7 @@ uip_reass(void)
~bitmap_bits[((offset + len) / 8 ) & 7];
} else {
/* If the two endpoints are in different bytes, we update the
- bytes in the endpoints and fill the stuff inbetween with
+ bytes in the endpoints and fill the stuff in-between with
0xff. */
uip_reassbitmap[offset / (8 * 8)] |=
bitmap_bits[(offset / 8 ) & 7];
@@ -749,7 +749,7 @@ uip_process(u8_t flag)
goto tcp_send_nodata;
}
- /* Exponential backoff. */
+ /* Exponential back-off. */
uip_connr->timer = UIP_RTO << (uip_connr->nrtx > 4?
4:
uip_connr->nrtx);
@@ -1297,7 +1297,7 @@ uip_process(u8_t flag)
with a connection in LISTEN. In that case, we should create a new
connection and send a SYNACK in return. */
found_listen:
- /* First we check if there are any connections avaliable. Unused
+ /* First we check if there are any connections available. Unused
connections are kept in the same table as used connections, but
unused ones have the tcpstate set to CLOSED. Also, connections in
TIME_WAIT are kept track of and we'll use the oldest one if no