Text based web server.
A little http web server to play with. Might be perfect for an embedded system. What the http client looks like, $ elinks http://localhost:10000 Update: Using graphics via Firefox: What the server side looks like. $ ./httpsrvr Server started at port no. 10000 with root directory as /home/eddie GET / HTTP/1.1 Host: localhost:10000 User-Agent: ELinks/0.12~pre5-7ubuntu1 (textmode; Ubuntu; Linux 3.2.0-30-generic i686; 80x24-2) Accept: */* Accept-Language: en Connection: Keep-Alive file: /home/eddie/index.html With graphics: $ code/httpsrvr Server started at port no. 10000 with root directory as /home/eddie GET / HTTP/1.1 Host: localhost:10000 User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:32.0) Gecko/20100101 Firefox/32.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate DNT: 1 Connection: keep-alive file: /home/eddie/index.html GET /test...