aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/TELNETServerApp.c
Commit message (Collapse)AuthorAgeFilesLines
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-162/+162
| | | | correctly converted to the target system's native end of line style.
* Added ENABLE_TELNET_SERVER compile time option to the Webserver project to ↵Dean Camera2010-03-101-8/+13
| | | | | | disable the TELNET server if desired. Change over static strings in the Webserver project to use PROGMEM where possible.
* Oops - missing brackets in the declaration of a string in TELNETServerApp.c.Dean Camera2010-02-151-1/+1
|
* Speed up Webserver demo data rate by not sending a full ethernet frame each ↵Dean Camera2010-02-121-4/+10
| | | | time, preventing the receiver from using a delayed ACK scheme which slows down the connection. TELNET server cleanup.
* Move DHCP negotiation timer into the DHCP connection application state ↵Dean Camera2010-02-121-7/+7
| | | | structure, so that each connection gets its own timeout counter (only one connection currently used, but this way is more correct). Add const correctness to static data in the TELNETServerApp.c and HTTPServerApp.c files.
* Fix TELNET server locking up if an invalid command was issued.Dean Camera2010-02-031-1/+5
|
* Disable uIP connection polling for now - this seems to corrupt the buffers.Dean Camera2010-02-031-4/+4
|
* Add a TELNET server to the webserver project, which currently can list ↵Dean Camera2010-02-031-0/+147
active TCP connections.