Updates the FILES contents to better reflect the current state.

This commit is contained in:
likewise 2004-11-29 09:39:51 +00:00
parent 0e96ece6c6
commit 62a37a4876
2 changed files with 10 additions and 7 deletions

View File

@ -1,11 +1,13 @@
api/ - The code for the API. api/ - The code for the high-level wrapper API. Not needed if
you use the lowel-level call-back/raw API.
core/ - The core files including protocol implementations, memory core/ - The core of the TPC/IP stack; protocol implementations,
and buffer management etc. memory and buffer management, and the low-level raw API.
include/ - lwIP include files. include/ - lwIP include files.
netif/ - Generic network interface device drivers are kept here. netif/ - Generic network interface device drivers are kept here,
as well as the ARP module.
For more information on the various subdirectories, check the FILES For more information on the various subdirectories, check the FILES
file in each directory. file in each directory.

View File

@ -1,17 +1,18 @@
This directory contains generic network interface device drivers that This directory contains generic network interface device drivers that
don't contain any hardware or architecture specific code. The files do not contain any hardware or architecture specific code. The files
are: are:
etharp.c etharp.c
Implements the ARP (Address Resolution Protocol) over Implements the ARP (Address Resolution Protocol) over
Ethernet. The code in this file should be used together with Ethernet. The code in this file should be used together with
Ethernet device drivers. Ethernet device drivers. Note that this module has been
largely made Ethernet independent so you should be able to
adapt this for other link layers (such as Firewire).
ethernetif.c ethernetif.c
An example of how an Ethernet device driver could look. This An example of how an Ethernet device driver could look. This
file can be used as a "skeleton" for developing new Ethernet file can be used as a "skeleton" for developing new Ethernet
network device drivers. It uses the etharp.c ARP code. network device drivers. It uses the etharp.c ARP code.
!!!THIS FILE IS NOT IN SYNC WITH CURRENT CODE !!!!
loopif.c loopif.c
An example network interface that shows how a "loopback" An example network interface that shows how a "loopback"