diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-07-31 11:16:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-07-31 11:16:04 +0000 |
commit | bf5f91244b581dd1b1a1e7b3c658b9773af94296 (patch) | |
tree | 04adb4f6df7dc875dd0065c15c3d866d484b5903 /docs/KNOWN_BUGS | |
parent | e8e84cf1da4100191d6c0e5e0ce94f4adaa84551 (diff) |
67. When creating multipart formposts. The file name part can be encoded with
something beyond ascii but currently libcurl will only pass in the verbatim
string the app provides. There are several browsers that already do this
encoding. The key seems to be the updated draft to RFC2231:
http://tools.ietf.org/html/draft-reschke-rfc2231-in-http-02
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r-- | docs/KNOWN_BUGS | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index f9ac8f818..9173dbad0 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -3,6 +3,12 @@ join in and help us correct one or more of these! Also be sure to check the changelog of the current development status, as one or more of these problems may have been fixed since this was written! +67. When creating multipart formposts. The file name part can be encoded with + something beyond ascii but currently libcurl will only pass in the verbatim + string the app provides. There are several browsers that already do this + encoding. The key seems to be the updated draft to RFC2231: + http://tools.ietf.org/html/draft-reschke-rfc2231-in-http-02 + 66. When using telnet, the time limitation options don't work. http://curl.haxx.se/bug/view.cgi?id=2818950 |