2002-11-02 20:38:49 +00:00
|
|
|
This directory contains generic network interface device drivers that
|
2004-11-29 09:39:51 +00:00
|
|
|
do not contain any hardware or architecture specific code. The files
|
2002-11-02 20:38:49 +00:00
|
|
|
are:
|
|
|
|
|
|
|
|
etharp.c
|
2002-11-11 14:37:30 +00:00
|
|
|
Implements the ARP (Address Resolution Protocol) over
|
2002-11-02 20:38:49 +00:00
|
|
|
Ethernet. The code in this file should be used together with
|
2004-11-29 09:39:51 +00:00
|
|
|
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).
|
2002-11-02 20:38:49 +00:00
|
|
|
|
|
|
|
ethernetif.c
|
|
|
|
An example of how an Ethernet device driver could look. This
|
|
|
|
file can be used as a "skeleton" for developing new Ethernet
|
|
|
|
network device drivers. It uses the etharp.c ARP code.
|
|
|
|
|
|
|
|
loopif.c
|
2007-04-23 20:00:29 +00:00
|
|
|
A "loopback" network interface driver. It requires configuration
|
|
|
|
through the define LWIP_LOOPIF_MULTITHREADING (see opt.h).
|
2002-11-02 20:38:49 +00:00
|
|
|
|
|
|
|
slipif.c
|
|
|
|
A generic implementation of the SLIP (Serial Line IP)
|
|
|
|
protocol. It requires a sio (serial I/O) module to work.
|
2003-05-30 08:49:34 +00:00
|
|
|
|
|
|
|
ppp/ Point-to-Point Protocol stack
|