ECHOSERV
========

Function
========

Demonstrates a simple TCP/IP echo server, using the
Berkeley Sockets API. 


Usage
=====

Example of usage:

    [paul@localhost paul]$ ./echoserv 5555 &
    [paul@localhost paul]$ telnet localhost 5555
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    Echo this line for me, please.
    Echo this line for me, please.
    Connection closed by foreign host.
    [paul@localhost paul]$


Installation
============

If your system supports make, simply type:

    make

at the command line. Otherwise, compile and link echoserv.c and
help.c in the usual way to create the executable. You may or may
not need to link in additional libraries for the sockets functions;
check your compiler's documentation.

