Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-19 | tarball: include the xmlstream example | Daniel Stenberg | |
2013-05-19 | xmlstream: XML stream parsing example source code | David Strauss | |
Add an XML stream parsing example using Expat. Add missing ignore for the binary from an unrelated example. | |||
2013-05-18 | cookies: only consider full path matches | YAMADA Yasuharu | |
I found a bug which cURL sends cookies to the path not to aim at. For example: - cURL sends a request to http://example.fake/hoge/ - server returns cookie which with path=/hoge; the point is there is NOT the '/' end of path string. - cURL sends a request to http://example.fake/hogege/ with the cookie. The reason for this old "feature" is because that behavior is what is described in the original netscape cookie spec: http://curl.haxx.se/rfc/cookie_spec.html The current cookie spec (RFC6265) clarifies the situation: http://tools.ietf.org/html/rfc6265#section-5.2.4 | |||
2013-05-16 | axtls: prevent memleaks on SSL handshake failures | Eric Hu | |
2013-05-12 | Revert "WIN32 MemoryTracking: track wcsdup() _wcsdup() and _tcsdup() usage" | Daniel Stenberg | |
This reverts commit 8ec2cb5544b86306b702484ea785b6b9596562ab. We don't have any code anywhere in libcurl (or the curl tool) that use wcsdup so there's no such memory use to track. It seems to cause mild problems with the Borland compiler though that we may avoid by reverting this change again. Bug: http://curl.haxx.se/mail/lib-2013-05/0070.html | |||
2013-05-12 | RELEASE-NOTES: synced with ae26ee3489588f0 | Daniel Stenberg | |
2013-05-11 | Updated zlib version in build files. | Guenter Knauf | |
2013-05-09 | OS X framework: fix invalid symbolic link | Renaud Guillard | |
2013-05-09 | nss: give PR_INTERVAL_NO_WAIT instead of -1 to PR_Recv/PR_Send | Daniel Stenberg | |
Reported by: David Strauss Bug: http://curl.haxx.se/mail/lib-2013-05/0088.html | |||
2013-05-08 | libtest: gitignore more binary files | Daniel Stenberg | |
2013-05-07 | servercert: allow empty subject | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1220 Patch by: John Gardiner Myers | |||
2013-05-07 | tests: Added new SMTP tests to verify commit 99b40451836d | Steve Holme | |
2013-05-07 | runtests.pl: support nonewline="yes" in client/stdin sections | Daniel Stenberg | |
2013-05-06 | build: fixed unit1394 for debug and metlink builds | Daniel Stenberg | |
2013-05-06 | unit1394.c: plug the curl tool unit test in | Kamil Dudka | |
2013-05-06 | unit1394.c: basis of a unit test for parse_cert_parameter() | Jared Jennings | |
2013-05-06 | src/Makefile.am: build static lib for unit tests if enabled | Kamil Dudka | |
2013-05-06 | tool_getparam: ensure string termination in parse_cert_parameter() | Kamil Dudka | |
2013-05-06 | tool_getparam: fix memleak in handling the -E option | Kamil Dudka | |
2013-05-06 | tool_getparam: describe what parse_cert_parameter() does | Kamil Dudka | |
... and de-duplicate the code initializing *passphrase | |||
2013-05-06 | curl.1: document escape sequences recognized by -E | Kamil Dudka | |
2013-05-06 | curl -E: allow to escape ':' in cert nickname | Jared Jennings | |
2013-05-05 | curl_schannel.c: Fixed invalid memory access during SSL shutdown | Marc Hoersken | |
2013-05-04 | smtp: Fix trailing whitespace warning | Steve Holme | |
2013-05-04 | smtp: Fix compilation warning | Steve Holme | |
comparison between signed and unsigned integer expressions | |||
2013-05-04 | RELEASE-NOTES: synced with 92ef5f19c801 | Steve Holme | |
2013-05-04 | smtp: Updated RFC-2821 references to RFC-5321 | Steve Holme | |
2013-05-04 | smtp: Fixed sending of double CRLF caused by first in EOB | Steve Holme | |
If the mail sent during the transfer contains a terminating <CRLF> then we should not send the first <CRLF> of the EOB as specified in RFC-5321. Additionally don't send the <CRLF> if there is "no mail data" as the DATA command already includes it. | |||
2013-05-03 | tests: Corrected MAIL SIZE for CRLF line endings | Steve Holme | |
... which was missed in commit: f5c3d9538452 | |||
2013-05-03 | tests: Corrected infilesize for CRLF line endings | Steve Holme | |
... which was missed in commit: f5c3d9538452 | |||
2013-05-03 | tests: Corrected test1406 to be RFC2821 compliant | Steve Holme | |
2013-05-02 | tests: Corrected test1320 to be RFC2821 compliant | Steve Holme | |
2013-05-02 | tests: Corrected typo in test909 | Steve Holme | |
Introduced in commit: 514817669e9e | |||
2013-05-02 | tests: Corrected test909 to be RFC2821 compliant | Steve Holme | |
2013-05-02 | tests: Updated test references to 909 from 1411 | Steve Holme | |
...and removed references to libcurl and test1406. | |||
2013-05-02 | tests: Renamed test1411 to test909 as this is a main SMTP test | Steve Holme | |
2013-05-01 | bindlocal: move brace out of #ifdef | Lars Johannesen | |
The code within #ifdef HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID wrongly had two closing braces when it should only have one, so builds without that define would fail. Bug: http://curl.haxx.se/mail/lib-2013-05/0000.html | |||
2013-04-30 | smtp: Tidy up to move the eob counter to the per-request structure | Steve Holme | |
Move the eob counter from the smtp_conn structure to the SMTP structure as it is associated with a SMTP payload on a per-request basis. | |||
2013-04-30 | TODO: Updated following the addition of CURLOPT_SASL_IR | Steve Holme | |
2013-04-29 | smtp: Fixed unknown percentage complete in progress bar | Steve Holme | |
The curl command line utility would display the the completed progress bar with a percentage of zero as the progress routines didn't know the size of the transfer. | |||
2013-04-29 | ftpserver: silence warnings | Daniel Stenberg | |
Fix regressions in commit b56e3d43e5d. Make @data local and filter off non-numerical digits from $testno in STATUS_imap. | |||
2013-04-29 | ftpserver.pl: Corrected the imap LOGIN response | Steve Holme | |
...to be more realistic and consistent with the other imap responses. | |||
2013-04-29 | tests: Added imap STATUS command test | Steve Holme | |
2013-04-28 | tests: Corrected the SMTP tests to be RFC2821 compliant | Steve Holme | |
The emails that are sent to the server during these tests were incorrectly formatted as they contained one or more LF terminated lines rather than being CRLF terminated as per Section 2.3.7 of RFC-2821. This wasn't a problem for the test suite as the <stdin> data matched the <upload> data but anyone using these tests as reference would be sending incorrect data to a server. | |||
2013-04-28 | email: Tidy up of *_perform_authenticate() | Steve Holme | |
Removed the hard returns from imap and pop3 by using the same style for sending the authentication string as smtp. Moved the "Other mechanisms not supported" check in smtp to match that of imap and pop3 to provide consistency between the three email protocols. | |||
2013-04-28 | smtp: Updated limit check to be more readable like the check in pop3 | Steve Holme | |
2013-04-28 | pop3: Added 255 octet limit check when sending initial response | Steve Holme | |
Added 255 octet limit check as per Section 4. Paragraph 8 of RFC-5034. | |||
2013-04-28 | DOCS: Corrected line length of recent Secure Transport changes | Steve Holme | |
2013-04-27 | darwinssl: add TLS crypto authentication | Nick Zitzmann | |
Users using the Secure Transport (darwinssl) back-end can now use a certificate and private key to authenticate with a site using TLS. Because Apple's security system is based around the keychain and does not have any non-public function to create a SecIdentityRef data structure from data loaded outside of the Keychain, the certificate and private key have to be loaded into the Keychain first (using the certtool command line tool or the Security framework's C API) before we can find it and use it. | |||
2013-04-27 | Corrected version numbers after bump | Steve Holme | |