8000 Tags · cc65/ip65 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: cc65/ip65

Tags

2025-01-19

Toggle 2025-01-19's commit message
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.

2023-06-11

Toggle 2023-06-11's commit message
Adjusted to cc65/cc65#1844

2022-07-30

Toggle 2022-07-30's commit message
Removed 'Dracarys' support.

Given the popularity of FujiNet, there's no momentum anymore for a W5100 device on the ATATRI.

2022-05-30

Toggle 2022-05-30's commit message
Follow-up fix for recent contribution.

Set the new IP address only on success.

2022-04-22

Toggle 2022-04-22's commit message
Added support for (virtual) W5100 DNS Offloading.

See https://github.com/a2retrosystems/uthernet2/wiki/Virtual-W5100-with-DNS for details.

2022-03-10

Toggle 2022-03-10's commit message
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.

2021-03-11

Toggle 2021-03-11's commit message
Just some minor alignments with the recent apps/Makefile change.

2019-05-10

Toggle 2019-05-10's commit message
Bump user visible versions.

2018-12-09

Toggle 2018-12-09's commit message
Don't trash parameter in AX.

2018-11-13

Toggle 2018-11-13's commit message
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.
0