Basic TCP networking examples.

Makefile:
	Makefile for Linux & GCC, 64-bit mode

Makefile.aix:
	Makefile for AIX 5 & 6, 64-bit mode

Makefile.freebsd:
	Makefile for FreeBSD & GCC, 64-bit mode

Makefile.solaris:
	Makefile for Solaris 10+, 64-bit mode

trivial-client.c:
	Connect to a server, receives a string back and print it.

trivial-server.c:
	Waits for clients connection and send back its name to the client.

file-client.c:
	Connect to a server to get a file or a portion of a file.

file-server.c:
	Waits for clients connection and send back a file or a portion
	of the file to the client.

sendfile-server.c:
	Variant of file-server.c using sendfile().

select_tut.c:
	Example for select(), taken from "man select_tut" with minor
	modifications.

errwarn.[ch]:
	Pico-framework to simplify fatal & non-fatal errors reporting.

