FILES
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:1k
开发平台:

C/C++

  1. This directory contains generic network interface device drivers that
  2. do not contain any hardware or architecture specific code. The files
  3. are:
  4. etharp.c
  5.           Implements the ARP (Address Resolution Protocol) over
  6.           Ethernet. The code in this file should be used together with
  7.           Ethernet device drivers. Note that this module has been
  8.           largely made Ethernet independent so you should be able to
  9.           adapt this for other link layers (such as Firewire).
  10. ethernetif.c
  11.           An example of how an Ethernet device driver could look. This
  12.           file can be used as a "skeleton" for developing new Ethernet
  13.           network device drivers. It uses the etharp.c ARP code.
  14. loopif.c
  15.           An example network interface that shows how a "loopback"
  16.           interface would work. This is not really intended for actual
  17.           use, but as a very basic example of how initialization and
  18.           output functions work.
  19. slipif.c
  20.           A generic implementation of the SLIP (Serial Line IP)
  21.           protocol. It requires a sio (serial I/O) module to work.
  22.   
  23. ppp/      Point-to-Point Protocol stack