- Apr 19, 2011
-
-
Guenter Knauf authored
-
Guenter Knauf authored
changed windows.h include to system header; changed obsolete 2nd check for str_w to str_utf8 in order to catch malloc() failure and avoid a free(NULL); changed calls to GetLastError() to void to kill unsused var compiler warnings; moved one call to GetLastError() into else case so that its only called when WideCharToMultiByte() really fails.
-
Guenter Knauf authored
Provide prototype for curl_win32_idn_to_ascii(); remove wrong 3rd parameter from curl_win32_idn_to_ascii() call.
-
Daniel Stenberg authored
do the s/VERSION/CURLVERSION replacement for the human redable output for --checkfor Reported by: Ryan Schmidt
-
Daniel Stenberg authored
-
Guenter Knauf authored
-
Guenter Knauf authored
-
- Apr 18, 2011
-
-
Daniel Stenberg authored
The new libcurl and command line options are now described.
-
Daniel Stenberg authored
Added CURLOPT_TRANSFER_ENCODING as the option to set to request Transfer Encoding in HTTP requests (if built zlib enabled). I also renamed CURLOPT_ENCODING to CURLOPT_ACCEPT_ENCODING (while keeping the old name around) to reduce the confusion when we have to encoding options for HTTP. --tr-encoding is now the new command line option for curl to request this, and thus I updated the test cases accordingly.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
When TE: is inserted in the request, we must add a "Connection: TE" as well to be HTTP 1.1 compliant. If a custom Connection: header is passed in, we must use that and only append TE to it. Test case 1125 verifies TE: + custom Connection:.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Since this struct member is used in the code to determine what and how to decode automatically and since it is now also used for compressed Transfer-Encodings, I renamed it to the more suitable 'auto_decoding'
-
Daniel Stenberg authored
Transfer-Encoding differs from Content-Encoding in a few subtle ways, but primarily it concerns the transfer only and not the content so when discovered to be compressed we know we have to uncompress it. There will only arrive compressed transfers in a response after we have requested them with the appropriate TE: header. Test case 1122 and 1123 verify.
-
Patrick Monnerat authored
-
Patrick Monnerat authored
Fix OS400 LDAP wrappers: strings were non null-terminated.
-
Daniel Stenberg authored
curl-config --version didn't output the correct version string (bug introduced in commit 0355e33b), and unfortunately the test case 1022 that was supposed to check for this was broken. This change fixes the test to detect this problem and it fixes the output. Bug: http://curl.haxx.se/bug/view.cgi?id=3288727
-
- Apr 17, 2011
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Clarified the release procedure
-
- Apr 16, 2011
-
-
Daniel Stenberg authored
As we're closing in on the release, I give up on the remaining ones but I leave them in here for now to try to fix for next release. I removed the 281 issue about warnings from the statical analyzer scans, as they seem to be mostly false positives at this point.
-
- Apr 15, 2011
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
When going back from SSL, put the send/recv function pointers back to the plain versions. Bug: http://curl.haxx.se/mail/lib-2011-04/0070.html Reported by: Mehmet Bozkurt
-
Guenter Knauf authored
-
- Apr 14, 2011
-
-
Daniel Stenberg authored
Error 4 has got a meaning Error 48 has got a slightly different meaning now
-
Daniel Stenberg authored
-
Andrei Benea authored
-
- Apr 13, 2011
-
-
Guenter Knauf authored
-
Dan Fandrich authored
-
- Apr 12, 2011
-
-
Daniel Stenberg authored
The script didn't properly add the -lssh2 link option when it enabled libssh2 linking where pkg-config isn't found. Reported by: Saqib Ali Bug: http://curl.haxx.se/mail/lib-2011-04/0054.html
-
- Apr 11, 2011
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
When checking if an existing RTSP connection is alive or not, the checkconnection function might be called with a SessionHandle pointer being NULL and then referenced causing a crash. This happened only using the multi interface. Reported by: Tinus van den Berg Bug: http://curl.haxx.se/bug/view.cgi?id=3280739
-
Daniel Stenberg authored
When using -O the file will be saved in the current directory, and this is now spelled out clearly.
-
- Apr 10, 2011
-
-
Daniel Stenberg authored
Allow openSSL without SSL2 to be used. This fix is inspired by the fix provided by Cristian Rodrguez. Reported by: Cristian Rodrguez
-
- Apr 09, 2011
-
-
Daniel Stenberg authored
Reported by: Hongli Lai
-
- Apr 08, 2011
-
-
Kamil Dudka authored
In case a client certificate is used, invalidate SSL session cache at the end of a session. This forces NSS to ask for a new client certificate when connecting second time to the same host. Bug: https://bugzilla.redhat.com/689031
-
- Apr 07, 2011
-
-
Daniel Stenberg authored
When I decided to search for a potential error with the cacert bundle it struck me I wanted to see the full source URL in the output...
-
Dan Fandrich authored
-