Tags: cc65/ip65
Tags
Put Ethernet buffers in separate source file. Having the Ethernet buffers in a separate source file simplifies to override their location by the user of the library.
Removed 'Dracarys' support. Given the popularity of FujiNet, there's no momentum anymore for a W5100 device on the ATATRI.
Follow-up fix for recent contribution. Set the new IP address only on success.
Added support for (virtual) W5100 DNS Offloading. See https://github.com/a2retrosystems/uthernet2/wiki/Virtual-W5100-with-DNS for details.
Leverage cc65 optimizer improvements. The cc65 HEAD at the time of writing features an improved optimizer that doesn't require the former workarounds anymore. The register variable introduced isn't exactly necessary but it greatly improves the code moving mass data from / to the W5100 chip.
Just some minor alignments with the recent apps/Makefile change.
Improved URL selector handling. parse_url stores the URL selector in the output_buffer - which is currently 520 bytes. A new entry point called parse_url_buffer was added which instead stores the URL selector in a buffer provided by the user. url_download now calls the new parse_url_buffer instead of parse_url. The buffer for the URL selector is simply the download_buffer. So the download_buffer is used twice: First to hold the URL selector to be sent as request to the server and then to hold the response received from the server. However, the URL selector still can't exceed the MSS (aka 1460 bytes). Note: The User-Agent string was shortened by two bytes as that allows a "default" URL (incl. 'http://' but without port number) of exactly 1400 bytes to end up as 1460 bytes URL selector.
PreviousNext