- Feb 17, 2011
-
-
Daniel Stenberg authored
I went through all the names mentioned as authors and in commit messages since 7.21.3, and this list inserted now is sorted on first name.
-
- Feb 10, 2011
-
-
Daniel Stenberg authored
-
- Jan 18, 2011
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Kamil Dudka authored
... and update the curl.1 and curl_easy_setopt.3 man pages such that they do not suggest to use an OpenSSL utility if curl is not built against OpenSSL. Bug: https://bugzilla.redhat.com/669702
-
- Jan 04, 2011
-
-
Kamil Dudka authored
Bug: https://bugzilla.redhat.com/623663
-
- Jan 03, 2011
-
-
Daniel Stenberg authored
-
- Dec 15, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Dec 09, 2010
-
-
Daniel Stenberg authored
-
- Nov 19, 2010
-
-
Matthias Bolte authored
On Windows, translate WSAGetLastError() to errno values as GNU TLS does it internally, too. This is necessary because send() and recv() on Windows don't set errno when they fail but GNU TLS expects a proper errno value. Bug: http://curl.haxx.se/bug/view.cgi?id=3110991
-
- Nov 14, 2010
-
-
Daniel Stenberg authored
-
- Nov 09, 2010
-
-
Kamil Dudka authored
Bug: https://bugzilla.redhat.com/650255 Reported by: Simon H.
-
- Nov 08, 2010
-
-
Daniel Stenberg authored
I also recounted and updated the command line and libcurl options.
-
- Nov 04, 2010
-
-
Daniel Stenberg authored
-
- Oct 17, 2010
-
-
Daniel Stenberg authored
-
- Oct 12, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Oct 08, 2010
-
-
Daniel Stenberg authored
-
- Sep 30, 2010
-
-
Daniel Stenberg authored
-
- Sep 28, 2010
-
-
Dan Fandrich authored
Patch was fixed and validated by David McCreedy.
-
- Sep 21, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Sep 20, 2010
-
-
Daniel Stenberg authored
Removed the duplicate entry of Kamil in the credits.
-
- Sep 18, 2010
-
-
Daniel Stenberg authored
-
- Sep 12, 2010
-
-
Dan Fandrich authored
When curl calls a function from that library then it needs to explicitly link to the library instead of piggybacking on libcurl's own dependency. Without this, GNU ld with the --no-add-needed flag fails when linking (which Fedora now does by default). Reported by: Quanah Gibson-Mount Bug: http://curl.haxx.se/mail/lib-2010-09/0085.html
-
- Aug 25, 2010
-
-
Daniel Stenberg authored
-
- Aug 15, 2010
-
-
Daniel Stenberg authored
-
Kamil Dudka authored
original bug report at https://bugzilla.redhat.com/622520
-
- Aug 11, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Aug 10, 2010
-
-
Daniel Stenberg authored
-
- Aug 06, 2010
-
-
Daniel Stenberg authored
-
- Aug 02, 2010
-
-
Daniel Stenberg authored
-
- Jul 14, 2010
-
-
Daniel Stenberg authored
When getting multiple URLs, curl didn't properly reset the byte counter after a successful transfer so if the subsequent transfer failed it would wrongly use the previous byte counter and behave badly (segfault) because of that. The code assumes that the byte counter and the 'stream' pointer is well in synch. Reported by: Jon Sargeant Bug: http://curl.haxx.se/bug/view.cgi?id=3028241
-
- Jul 13, 2010
-
-
Daniel Stenberg authored
-
- Jun 30, 2010
-
-
Kamil Dudka authored
When configured with '--without-ssl --with-nss', NTLM authentication now uses NSS crypto library for MD5 and DES. For MD4 we have a local implementation in that case. More details are available at https://bugzilla.redhat.com/603783 In order to get it working, curl_global_init() must be called with CURL_GLOBAL_SSL or CURL_GLOBAL_ALL. That's necessary because NSS needs to be initialized globally and we do so only when the NSS library is actually required by protocol. The mentioned call of curl_global_init() is responsible for creating of the initialization mutex. There was also slightly changed the NSS initialization scenario, in particular, loading of the NSS PEM module. It used to be loaded always right after the NSS library was initialized. Now the library is initialized as soon as any SSL or NTLM is required, while the PEM module is prevented from being loaded until the SSL is actually required.
-
- Jun 28, 2010
-
-
Daniel Stenberg authored
curl didn't properly handle escaping characters in a URL with the use of backslash. It did an attempt, but that failed as reported in bug 3022551. The described example was using the URL "http://example.com?{AB,C\,D}". I've now removed the special-handling of letters following the backslash and I also removed the bad extra check that triggered this particular bug. Bug: http://curl.haxx.se/bug/view.cgi?id=3022551 Reported by: Jon Sargeant
-
Daniel Stenberg authored
-
- Jun 16, 2010
-
-
Daniel Stenberg authored
-