aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/uip
Commit message (Collapse)AuthorAgeFilesLines
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-081-1/+1
| | | | | | Fixed calculation of timer register reload values derived from F_CPU; must subtract one from the division result for the compare value to be correct. Change AVRISP-MKII rescue clock speed to 4MHz to ensure that a 125KHz ISP speed works regardless of the target's fuses (i.e. DIV8 set).
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-1311-147/+158
| | | | tool made by Laszlo Monda
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-301-1/+1
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-302-13/+13
| | | | EN-GB spelling dictionary.
* Spell check more of the third party libraries used by LUFA.Dean Camera2010-07-301-6/+6
|
* Spell check all source files once again to find any typos.Dean Camera2010-07-293-3/+3
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-0811-5887/+5887
| | | | correctly converted to the target system's native end of line style.
* Change over unix line-endings to dos line endings.Dean Camera2010-05-0711-5871/+5871
|
* Use a temporary variable to hold the current URI length in the Webserver, ↵Dean Camera2010-02-181-4/+0
| | | | rather than calling strlen() multiple times on an unchanged buffer. Clean up uip-split.c.
* Add uIP-split code to the Webserver project, so that each packet is split in ↵Dean Camera2010-02-182-0/+248
| | | | half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory.
* Speed up Webserver demo data rate by not sending a full ethernet frame each ↵Dean Camera2010-02-121-1/+1
| | | | 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-1/+4
| | | | 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 DHCPClient init code in the Webserver project writing to the incorrect ↵Dean Camera2010-02-121-1/+0
| | | | application state location (thanks to Mike Alexander).
* Make Webserver allow HTTP requests for files with up to 50 characters in the ↵Dean Camera2010-02-071-1/+1
| | | | | | path instead of 30, to be in synch with the project documentation. Change Webserver project's ENABLE_DHCP compile time option to ENABLE_DHCP_CLIENT to more accurately indicate its function.
* Re-add Webserver uIP application polling, apply patch to uIP by Andrew Ruder ↵Dean Camera2010-02-031-0/+2
| | | | to fix corrupt TCP streams when multiple applications are used and the applications are polled for more data.
* Add a TELNET server to the webserver project, which currently can list ↵Dean Camera2010-02-033-21/+45
| | | | active TCP connections.
* Exclude FATFs from the Webserver project documentation. Rename the functions ↵Dean Camera2010-02-032-34/+30
| | | | in the HTTPServerApp.c/.h files so that they use the correct "HTTPServerApp_" prefix, and not "Webserver_".
* Remove now unused conf directory from the uIP stack in the Webserver project.Dean Camera2010-02-025-223/+0
|
* Replace the Webserver demo's uIP with the latest code ripped from the ↵Dean Camera2010-02-0222-3196/+1137
| | | | Contiki project by Adam Dunkels.
* Clean up HTTP webserver code in the Webserver project, so that it follows ↵Dean Camera2010-01-311-6/+7
| | | | the uIP application structure guidelines and uses cleaner state machine based code.
* Better HTTP GET parsing in the Webserver demo, add application polling.Dean Camera2010-01-311-1/+1
|
* Add TCP retransmission support to the HTTP webserver in the Webserver ↵Dean Camera2010-01-291-1/+4
| | | | project, so that lost segments are retransmitted as needed.
* Add MIME type handling to the Webserver project, so that files of different ↵Dean Camera2010-01-291-0/+1
| | | | types (e.g. images) can be served out to HTTP clients.
* Add FatFS library to the Webserver project, extend the HTTP server so that ↵Dean Camera2010-01-281-1/+4
| | | | it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC.
* Clean up Webserver project - add more Doxygen documentation for the new DHCP ↵Dean Camera2010-01-271-0/+6
| | | | client functions and defines.
* Add DHCP server to the Webserver demo for automatic network configuration. ↵Dean Camera2010-01-274-14/+22
| | | | Correct uIP timer clock not tracking the correct timespan.
* Moved initial completed version of the Webserver project out of the ↵Dean Camera2010-01-2528-0/+7879
Projects/Incomplete directory.