blob: d9102826f8f7d5ab50a6a2f2c428db32baedaf5c [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001INTRODUCTION
2
3lwIP is a small independent implementation of the TCP/IP protocol
4suite that has been developed by Adam Dunkels at the Computer and
5Networks Architectures (CNA) lab at the Swedish Institute of Computer
6Science (SICS).
7
8The focus of the lwIP TCP/IP implementation is to reduce the RAM usage
9while still having a full scale TCP. This making lwIP suitable for use
10in embedded systems with tens of kilobytes of free RAM and room for
11around 40 kilobytes of code ROM.
12
13FEATURES
14
15 * IP (Internet Protocol) including packet forwarding over multiple
16 network interfaces
17 * ICMP (Internet Control Message Protocol) for network maintenance
18 and debugging
19 * UDP (User Datagram Protocol) including experimental UDP-lite
20 extensions
21 * TCP (Transmission Control Protocol) with congestion control, RTT
22 estimation and fast recovery/fast retransmit
23 * Specialized API for enhanced performance
24 * Optional Berkeley socket API
25
26LICENSE
27
28lwIP is freely available under a BSD license.
29
30DEVELOPMENT
31
32lwIP has grown into an excellent TCP/IP stack for embedded devices,
33and developers using the stack often submit bug fixes, improvements,
34and additions to the stack to further increase its usefulness.
35
36Development of lwIP is hosted on Savannah, a central point for
37software development, maintenance and distribution. Everyone can
38help improve lwIP by use of Savannah's interface, CVS and the
39mailing list. A core team of developers will commit changes to the
40CVS source tree.
41
42The lwIP TCP/IP stack is maintained in the 'lwip' CVS module and
43contributions (such as platform ports) are in the 'contrib' module.
44
45See doc/savannah.txt for details on CVS server access for users and
46developers.
47
48Last night's CVS tar ball can be downloaded from:
49 http://savannah.gnu.org/cvs.backups/lwip.tar.gz [CHANGED - NEEDS FIXING]
50
51The current CVS trees are web-browsable:
52 http://savannah.nongnu.org/cgi-bin/viewcvs/lwip/lwip/
53 http://savannah.nongnu.org/cgi-bin/viewcvs/lwip/contrib/
54
55Submit patches and bugs via the lwIP project page:
56 http://savannah.nongnu.org/projects/lwip/
57
58
59DOCUMENTATION
60
61The original out-dated homepage of lwIP and Adam Dunkels' papers on
62lwIP are at the official lwIP home page:
63 http://www.sics.se/~adam/lwip/
64
65Self documentation of the source code is regularly extracted from the
66current CVS sources and is available from this web page:
67 http://www.nongnu.org/lwip/
68
69Reading Adam's papers, the files in docs/, browsing the source code
70documentation and browsing the mailing list archives is a good way to
71become familiar with the design of lwIP.
72
73Adam Dunkels <adam@sics.se>
74Leon Woestenberg <leon.woestenberg@gmx.net>