TODO: TFTP doesn't convert LF to CRLF for mode=netascii

Closes #12655
Closes #12690
This commit is contained in:
Daniel Stenberg 2024-01-13 10:56:47 +01:00
parent 9729560a6f
commit 9582f20d8a
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -196,6 +196,9 @@
21. MQTT
21.1 Support rate-limiting
22. TFTP
22.1 TFTP doesn't convert LF to CRLF for mode=netascii
==============================================================================
1. libcurl
@ -1392,3 +1395,14 @@
The rate-limiting logic is done in the PERFORMING state in multi.c but MQTT
is not (yet) implemented to use that.
22. TFTP
22.1 TFTP doesn't convert LF to CRLF for mode=netascii
RFC 3617 defines that an TFTP transfer can be done using "netascii"
mode. curl does not support extracting that mode from the URL nor does it treat
such transfers specifically. It should probably do LF to CRLF translations
for them.
See https://github.com/curl/curl/issues/12655