Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 11 | -5887/+5887 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Change over unix line-endings to dos line endings. | Dean Camera | 2010-05-07 | 11 | -5871/+5871 |
| | |||||
* | Use a temporary variable to hold the current URI length in the Webserver, ↵ | Dean Camera | 2010-02-18 | 1 | -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 Camera | 2010-02-18 | 2 | -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 Camera | 2010-02-12 | 1 | -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 Camera | 2010-02-12 | 1 | -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 Camera | 2010-02-12 | 1 | -1/+0 |
| | | | | application state location (thanks to Mike Alexander). | ||||
* | Make Webserver allow HTTP requests for files with up to 50 characters in the ↵ | Dean Camera | 2010-02-07 | 1 | -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 Camera | 2010-02-03 | 1 | -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 Camera | 2010-02-03 | 3 | -21/+45 |
| | | | | active TCP connections. | ||||
* | Exclude FATFs from the Webserver project documentation. Rename the functions ↵ | Dean Camera | 2010-02-03 | 2 | -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 Camera | 2010-02-02 | 5 | -223/+0 |
| | |||||
* | Replace the Webserver demo's uIP with the latest code ripped from the ↵ | Dean Camera | 2010-02-02 | 22 | -3196/+1137 |
| | | | | Contiki project by Adam Dunkels. | ||||
* | Clean up HTTP webserver code in the Webserver project, so that it follows ↵ | Dean Camera | 2010-01-31 | 1 | -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 Camera | 2010-01-31 | 1 | -1/+1 |
| | |||||
* | Add TCP retransmission support to the HTTP webserver in the Webserver ↵ | Dean Camera | 2010-01-29 | 1 | -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 Camera | 2010-01-29 | 1 | -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 Camera | 2010-01-28 | 1 | -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 Camera | 2010-01-27 | 1 | -0/+6 |
| | | | | client functions and defines. | ||||
* | Add DHCP server to the Webserver demo for automatic network configuration. ↵ | Dean Camera | 2010-01-27 | 4 | -14/+22 |
| | | | | Correct uIP timer clock not tracking the correct timespan. | ||||
* | Moved initial completed version of the Webserver project out of the ↵ | Dean Camera | 2010-01-25 | 28 | -0/+7879 |
Projects/Incomplete directory. |