oskit/oskit-20020317/udp
dzavalishin f85eb2576f import 2016-02-19 15:02:31 +03:00
..
GNUmakefile.in import 2016-02-19 15:02:31 +03:00
README import 2016-02-19 15:02:31 +03:00
arp.c import 2016-02-19 15:02:31 +03:00
eth.c import 2016-02-19 15:02:31 +03:00
ip.c import 2016-02-19 15:02:31 +03:00
socket.c import 2016-02-19 15:02:31 +03:00
udplib.h import 2016-02-19 15:02:31 +03:00

README

Directories: oskit/udp
Target: liboskit_udp.a
Documentation: [doc/udp.tex - should be, but doesn't exist yet]
Original Code Source: Flux Research Group, University of Utah
Description: 
	A simple UDP implementation.  It provides a simple send and recv
	UDP interface without fragmentation. There are no options supported.
        Unlike FUDP, this library does real arp and operates on the supplied
	ethernet device directly, instead of a supplied netio.

	This library is used by netdisk, and perhaps netboot at some point.

	Notable holes in this implementation are:

		- Its very simple.

		- Only handles one interface.

		- Concept of gateway is pretty simplistic.

		- No fragmentation or reassembly.

		- ICMP support is for ping only!