aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/DHCPClientApp.c
Commit message (Collapse)AuthorAgeFilesLines
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update Webserver project to remove DHCP IP configuration status notification.Dean Camera2011-05-261-3/+0
|
* Add RNDIS Device support to the Webserver project, so that the files stored ↵Dean Camera2011-05-221-74/+13
| | | | on the device can be viewed from a web-browser while the board is plugged into a host machine.
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-31/+32
| | | | tool made by Laszlo Monda
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-211-5/+12
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-264/+264
| | | | correctly converted to the target system's native end of line style.
* Add const keyword to the demo function parameters where possible.Dean Camera2010-04-181-2/+2
|
* Added ENABLE_TELNET_SERVER compile time option to the Webserver project to ↵Dean Camera2010-03-101-5/+6
| | | | | | disable the TELNET server if desired. Change over static strings in the Webserver project to use PROGMEM where possible.
* Webserver project now uses the board LEDs to indicate the current IP ↵Dean Camera2010-03-091-1/+4
| | | | | | configuration state. Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
* Commit for the 100219 release.Dean Camera2010-02-191-5/+1
|
* Move DHCP negotiation timer into the DHCP connection application state ↵Dean Camera2010-02-121-12/+11
| | | | 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-10/+12
| | | | 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.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-041-4/+4
| | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects.
* Add a TELNET server to the webserver project, which currently can list ↵Dean Camera2010-02-031-0/+263
active TCP connections.