2002-11-02 20:38:49 +00:00
|
|
|
This directory contains generic network interface device drivers that
|
|
|
|
don't contain any hardware or architecture specific code. The files
|
|
|
|
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
|
|
|
|
Ethernet device drivers.
|
|
|
|
|
|
|
|
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.
|
2003-02-05 13:39:35 +00:00
|
|
|
!!!THIS FILE IS NOT IN SYNC WITH CURRENT CODE !!!!
|
2002-11-02 20:38:49 +00:00
|
|
|
|
|
|
|
loopif.c
|
|
|
|
An example network interface that shows how a "loopback"
|
|
|
|
interface would work. This is not really intended for actual
|
|
|
|
use, but as a very basic example of how initialization and
|
|
|
|
output functions work.
|
|
|
|
|
|
|
|
slipif.c
|
|
|
|
A generic implementation of the SLIP (Serial Line IP)
|
|
|
|
protocol. It requires a sio (serial I/O) module to work.
|
|
|
|
|