1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Moved two 7.11.2 issues over to the more general TODO docs.

This commit is contained in:
Daniel Stenberg 2004-03-01 09:08:52 +00:00
parent d57b84e290
commit 097938e6c8
2 changed files with 7 additions and 13 deletions

View File

@ -12,11 +12,6 @@ To get fixed in 7.11.1 (planned release in March 2004)
To get fixed in 7.11.2 (planned release May/June 2004)
======================
1. Introduce a new error code indicating authentication problems (for proxy
CONNECT error 407 for example). This cannot be an error code, we must not
return informational stuff as errors, consider a new info returned by
curl_easy_getinfo() #845941 UNASSIGNED
6. REST fix for servers not behaving well on >2GB requests. This should fail
if the server doesn't set the pointer to the requested index. The tricky
part is to figure out if the server did the right thing or not.
@ -29,6 +24,3 @@ To get fixed in 7.11.2 (planned release May/June 2004)
23. Peter Sylvester's "Most Significant Common Name" patch. Feedback welcome.
At least the UTF8 conversion and comparison should be done. Patch?
UNASSIGNED
26. Make it possible to share the ares channel with the share interface.
UNASSIGNED

View File

@ -25,15 +25,17 @@ TODO
[http://curl.haxx.se/dev/no_copy_callbacks.txt]
* More data sharing. curl_share_* functions already exist and work, and they
can be extended to share more.
can be extended to share more. For example, enable sharing of the ares
channel.
* Introduce a new error code indicating authentication problems (for proxy
CONNECT error 407 for example). This cannot be an error code, we must not
return informational stuff as errors, consider a new info returned by
curl_easy_getinfo() #845941
* Set the SO_KEEPALIVE socket option to make libcurl notice and disconnect
very long time idle connections.
* Go through the code and verify that libcurl deals with big files >2GB and
>4GB all over. Bug reports (and source reviews) show that it doesn't
currently work.
LIBCURL - multi interface
* Add curl_multi_timeout() to make libcurl's ares-functionality better.