This is a port of the uip 0.6 stack (http://www.sics.se/~adam/uip/download.html)
to the tuxgraphics ethernet board enc28j60+atmega168.

The port was done by Ben Zijlstra.
http://benshobbycorner.nl

tuxgraphics does not maintain this stack at the moment.

It needs more "space" than the tuxgraphics stack but
it can handle multipe data packets per tcp session.
A feature very useful applications like telnet.

This example code implements a telnet server. The server
just answers ok on every data-packet.

Ip addresses are set in uipopt.h

To compile type: 
make
To load to target (on linux with avrusb500):
make load
------------------------------------------------------------
This is an example. The user typed here "hello" and then "q".
# telnet 10.0.0.27

Trying 10.0.0.27...
Connected to 10.0.0.27.
Escape character is '^]'.
Welcome! UIP + Tuxgraphics eth-board, q to quit
hello
ok
q
Connection closed by foreign host.
------------------------------------------------------------