- Mar 31, 2013
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Patch by: Robert Wruck Bug: http://curl.haxx.se/bug/view.cgi?id=1209
-
- Mar 30, 2013
-
-
Daniel Stenberg authored
-
- Mar 29, 2013
-
-
Daniel Stenberg authored
The last remaining code piece that still used FTPSENDF now uses PPSENDF. In the problematic case, a PREQUOTE series was done on a re-used connection when Curl_pp_init() hadn't been called so it had messed up pointers. The init call is done properly from Curl_pp_sendf() so this change fixes this particular crash. Bug: http://curl.haxx.se/mail/lib-2013-03/0319.html Reported by: Sam Deane
-
- Mar 27, 2013
-
-
Steve Holme authored
-
Clemens Gruber authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Modified sws to support and use custom CONNECT responses instead of the previously naive hard-coded version. Made the HTTP test server able to extract test case number from the host name in a CONNECT request by finding the number after the last dot. It makes 'machine.moo.123' use test case 123. Adapted a larger amount of tests to the new <connect> style. Bug: http://curl.haxx.se/bug/view.cgi?id=1204 Reported by: Martin Jansen
-
Clemens Gruber authored
-
- Mar 25, 2013
-
-
Yang Tse authored
-
Yang Tse authored
As of 25-mar-2013 wcsdup() _wcsdup() and _tcsdup() are only used in WIN32 specific code, so tracking of these has not been extended for other build targets. Without this fix, memory tracking system on WIN32 builds, when using these functions, would provide misleading results. In order to properly extend this support for all targets curl.h would have to define curl_wcsdup_callback prototype and consequently wchar_t should be visible before that in curl.h. IOW curl_wchar_t defined in curlbuild.h and this pulling whatever system header is required to get wchar_t definition. Additionally a new curl_global_init_mem() function that also receives user defined wcsdup() callback would be required.
-
Yang Tse authored
reverts unreleased invalid memory leak fix
-
- Mar 23, 2013
-
-
Daniel Stenberg authored
More changes, bugfixes and contributors!
-
Martin Jansen authored
Proxy servers tend to add their own headers at the beginning of responses. The size of these headers was not taken into account by CURLINFO_HEADER_SIZE before this change. Bug: http://curl.haxx.se/bug/view.cgi?id=1204
-
- Mar 21, 2013
-
-
Steve Holme authored
Corrected some incorrectly positioned pointer variable declarations to be "char *" rather than "char* ".
-
Steve Holme authored
Corrected some incorrectly positioned pointer variable declarations to be "type *" rather than "type* ".
-
Steve Holme authored
Updated the reply data in tests: 800, 801, 802, 804 and 1321 to possess the CRLF as per RFC-822.
-
Steve Holme authored
warning: an enumerated type is mixed with another type
-
- Mar 20, 2013
-
-
Steve Holme authored
warning: conversion from enumeration type to different enumeration type
-
Steve Holme authored
warning: declaration of 'time' shadows a global declaration
-
John E. Malmberg authored
This patch removes building curlbuild.h from the build_vms.com procedure and uses the one in the daily or release tarball instead. packages/vms/build_curlbuild_h.com is obsolete with this change. Accessing the library module name "tool_main" needs different handling when the optional extended parsing is enabled. Tested on IA64/VMS 8.4 and VAX/VMS 7.3
-
- Mar 19, 2013
-
-
Nick Zitzmann authored
I found out that ECC doesn't work as of OS X 10.8.3, so those ciphers are turned off until the next point release of OS X.
-
- Mar 18, 2013
-
-
Steve Holme authored
-
Oliver Schindler authored
After having done a POST over a CONNECT request, the 'rewindaftersend' boolean could be holding the previous value which could lead to badness. This should be tested for in a new test case! Bug: https://groups.google.com/d/msg/msysgit/B31LNftR4BI/KhRTz0iuGmUJ
-
Steve Holme authored
Moved SMTP, POP3, IMAP and New Protocol sections to be listed after the other protocols (FTP, HTTP and TELNET) and SASL to be after SSL and GnuTLS as these are all security related. Additionally fixed numbering of the SSL and GnuTLS sections as they weren't consecutive.
-
Yang Tse authored
-
- Mar 17, 2013
-
-
Steve Holme authored
Fixed incorrect initial response generation for the NTLM and LOGIN SASL authentication mechanisms when the SASL-IR was detected. Introduced in commit: 6da7dc02.
-
- Mar 16, 2013
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
- Mar 15, 2013
-
-
Yang Tse authored
-
Steve Holme authored
-
Steve Holme authored
-
Yang Tse authored
-
Yang Tse authored
These verfy that the 'memory tracking' subsystem is actually doing its job when using curl tool (#96), a test in libtest (#558) and also a unit test (#1330), in order to prevent regressions in this functionallity.
-
Steve Holme authored
-
Daniel Stenberg authored
curl has been accepting URLs using slightly wrong syntax for a long time, such as when completely missing as slash "http://example.org" or missing a slash when a query part is given "http://example.org?q=foobar". curl would translate these into a legitimate HTTP request to servers, although as was shown in bug #1206 it was not adjusted properly in the cases where a HTTP proxy was used. Test 1213 and 1214 were added to the test suite to verify this fix. The test HTTP server was adjusted to allow us to specify test number in the host name only without using any slashes in a given URL. Bug: http://curl.haxx.se/bug/view.cgi?id=1206 Reported by: ScottJi
-
- Mar 14, 2013
-
-
Steve Holme authored
Used hard coded data from RFC-3501 section 6.3.2.
-