]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
TODO: TFTP doesn't convert LF to CRLF for mode=netascii
authorDaniel Stenberg <daniel@haxx.se>
Sat, 13 Jan 2024 09:56:47 +0000 (10:56 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 13 Jan 2024 15:26:17 +0000 (16:26 +0100)
Closes #12655
Closes #12690

docs/TODO

index 06162c8bb64cea4f58cd4ade600c0c6aa67ec8fe..d89b080d0cae5b461d9a5fa7f2a635ec4a1260bb 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
  21. MQTT
  21.1 Support rate-limiting
 
+ 22. TFTP
+ 22.1 TFTP doesn't convert LF to CRLF for mode=netascii
+
 ==============================================================================
 
 1. libcurl
 
  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