Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-05 | packages: follow up fix for a47c142, 11e8066 and 92b9ae5 | Marc Hoersken | |
2014-01-05 | multi.c: fix possible dereference of null pointer | Marc Hoersken | |
2014-01-05 | Examples: Renamed SMTP MAIL example to match other email examples | Steve Holme | |
2014-01-05 | examples: Added POP3 TLS example | Steve Holme | |
2014-01-05 | examples: Added IMAP NOOP example | Steve Holme | |
2014-01-05 | examples: Added POP3 NOOP example | Steve Holme | |
2014-01-05 | pop3-stat.c: Corrected small typo from commit 91d62e9abd761c | Steve Holme | |
2014-01-05 | examples: Added POP3 STAT example | Steve Holme | |
2014-01-05 | examples: Added POP3 TOP example | Steve Holme | |
2014-01-05 | examples: Added POP3 DELE example | Steve Holme | |
2014-01-05 | examples: Added POP3 UIDL example | Steve Holme | |
2014-01-05 | examples: Added POP3 RETR example | Steve Holme | |
2014-01-05 | examples: Added return of error code in POP3 examples | Steve Holme | |
2014-01-05 | runtests.pl: Updated copyright year after edit from d718abd968aeb4 | Steve Holme | |
2014-01-05 | examples: Reworked POP3 examples for additional upcoming POP3 examples | Steve Holme | |
2014-01-05 | examples: Added SMTP SSL example | Steve Holme | |
2014-01-05 | examples: Added IMAP SSL and TLS examples | Steve Holme | |
2014-01-05 | runtests.pl: check for tstunnel command on Windows | Marc Hoersken | |
The Windows console version of stunnel is called "tstunnel", while running "stunnel" on Windows spawns a new console window which cannot be handled by the testsuite. | |||
2014-01-05 | testcurl.pl: always show the last 5 commits even with --nogitpull | Marc Hoersken | |
2014-01-04 | ftp tests: provide LIST responses in the test file itself | Daniel Stenberg | |
Previously LIST always returned a fixed hardcoded list that the ftp server code knew about, mostly since the server didn't get any test case number in the LIST scenario. Starting now, doing a CWD to a directory named test-[number] will make the test server remember that number and consider it a test case so that a subsequent LIST command will send the <data> section of that test case back. It allows LIST tests to be made more similar to how all other tests work. Test 100 was updated to provide its own directory listing. | |||
2014-01-04 | examples: Standardised username and password settings for all email examples | Steve Holme | |
Replaced the use of CURLOPT_USERPWD for the preferred CURLOPT_USERNAME and CURLOPT_PASSWORD options and used the same username and password for all email examples which is the same as that used in the test suite. | |||
2014-01-04 | Updated copyright year for recent changes | Steve Holme | |
2014-01-04 | secureserver.pl: support for stunnel-path with nun-alphanum chars | Marc Hoersken | |
This is desired to support stunnel installations on Windows. | |||
2014-01-04 | conncache.c: fix possible dereference of null pointer | Marc Hoersken | |
2014-01-04 | docs: primarily refer to schannel as WinSSL | Marc Hoersken | |
2014-01-04 | examples: Added IMAP COPY example | Steve Holme | |
2014-01-04 | examples: Added IMAP DELETE example | Steve Holme | |
2014-01-04 | examples: Added IMAP CREATE example | Steve Holme | |
2014-01-04 | FTP parselist: fix "total" parser | Daniel Stenberg | |
A regression introduced in 7f3b87d8782eae1 (present in the 7.21.4 release) broke the total parser. Now skip the whitespace and the digits. Reported-by: Justin Maggard Bug: http://curl.haxx.se/mail/lib-2014-01/0019.html | |||
2014-01-03 | test1513: fix spelling | Daniel Stenberg | |
2014-01-03 | Makefile.vc6: follow up fix for 11e8066 and 92b9ae5 | Marc Hoersken | |
2014-01-03 | test1513: added - verify early progress callback return fail | Daniel Stenberg | |
Verify the change brought in commit 8e11731653061. It makes sure that returning a failure from the progress callback even very early results in the correct return code. | |||
2014-01-03 | progresscallback: make CURLE_ABORTED_BY_CALLBACK get returned better | Daniel Stenberg | |
When the progress callback returned 1 at a very early state, the code would not make CURLE_ABORTED_BY_CALLBACK get returned but the process would still be interrupted. In the HTTP case, this would then cause a CURLE_GOT_NOTHING to erroneously get returned instead. Reported-by: Petr Novak Bug: http://curl.haxx.se/bug/view.cgi?id=1318 | |||
2014-01-03 | unittests: do not include curl_memory.h | Marc Hoersken | |
memdebug.h already contains all required definitions and including curl_memory.h causes errors like the following: tests/unit/unit1394.c:119: undefined reference to `Curl_cfree' tests/unit/unit1394.c:120: undefined reference to `Curl_cfree' | |||
2014-01-03 | pipeline: remove print_pipeline() | Daniel Stenberg | |
This is a debug function only and serves no purpose in production code, it only slows things down. I left the code #ifdef'ed for possible future pipeline debugging. Also, this was a global function without proper namespace usage. Reported-by: He Qin Bug: http://curl.haxx.se/bug/view.cgi?id=1320 | |||
2014-01-03 | openssl: allow explicit sslv2 selection | Daniel Stenberg | |
If OpenSSL is built to support SSLv2 this brings back the ability to explicitly select that as a protocol level. Reported-by: Steve Holme Bug: http://curl.haxx.se/mail/lib-2014-01/0013.html | |||
2014-01-02 | Bumped copyright year to 2014 | Steve Holme | |
2014-01-02 | Updated copyright year for recent changes | Steve Holme | |
2014-01-03 | vtls/nssg.h: fixed include references to moved file | Marc Hoersken | |
2014-01-03 | curl_easy_setopt.3: fix formatting mistakes | Christian Weisgerber | |
This fixes two markup typos I noticed in curl_easy_setopt.3. (The use of bold vs. italics seems a bit inconsistent in that page, but it should at least be valid man syntax.) | |||
2014-01-02 | OpenSSL: Fix forcing SSLv3 connections | Barry Abrahamson | |
Some feedback provided by byte_bucket on IRC pointed out that commit db11750cfa5b1 wasn’t really correct because it allows for “upgrading” to a newer protocol when it should be only allowing for SSLv3. This change fixes that. When SSLv3 connection is forced, don't allow SSL negotiations for newer versions. Feedback provided by byte_bucket in #curl. This behavior is also consistent with the other force flags like --tlsv1.1 which doesn't allow for TLSv1.2 negotiation, etc Feedback-by: byte_bucket Bug: http://curl.haxx.se/bug/view.cgi?id=1319 | |||
2014-01-02 | Trial to fix the nmake Makefile for vtls files. | Guenter Knauf | |
2014-01-02 | examples: Added IMAP SEARCH example | Steve Holme | |
2014-01-02 | examples: Added IMAP EXAMINE mailbox folder example | Steve Holme | |
2014-01-02 | Fix NetWare build for vtls files. | Guenter Knauf | |
2014-01-01 | CMakeLists.txt: add standard curl source code header | Daniel Stenberg | |
2014-01-01 | CMakeLists.txt: add warning about the cmake build's state | Daniel Stenberg | |
2014-01-01 | examples: Updated SMTP multi example to be more realistic | Steve Holme | |
Updated the contents of the email and payload callback as per the IMAP and other SMTP examples. | |||
2014-01-01 | OpenSSL: Fix forcing SSLv3 connections | Barry Abrahamson | |
Since ad34a2d5c87c7f4b14e8dded3 (present in 7.34.0 release) forcing SSLv3 will always return the error "curl: (35) Unsupported SSL protocol version" Can be replicated with `curl -I -3 https://www.google.com/`. This fix simply allows for v3 to be forced. | |||
2014-01-01 | examples: Corrected unescaped backslash in imap-store.c | Steve Holme | |