Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-21 | first small steps towards smtp | Daniel Stenberg | |
2009-12-21 | Replaced tabs with spaces | Yang Tse | |
2009-12-20 | remove some unused code | Daniel Stenberg | |
2009-12-20 | Improve delay command interruptability | Yang Tse | |
2009-12-20 | revert that, we already had a function named like that! | Daniel Stenberg | |
2009-12-20 | rename the verifyftp function to verifyserver since it is used to verify | Daniel Stenberg | |
a wide variety of protocol servers | |||
2009-12-20 | free the allocated mailbox name at disconnect | Daniel Stenberg | |
2009-12-20 | introducing the first IMAP FETCH test | Daniel Stenberg | |
2009-12-20 | - Attempt to fix script compilation failure on versions older than 5.007003, | Yang Tse | |
corelist -a Time::HiRes lists this as the first version released with it. - Ensure ftp check delay timer is always an integral number. | |||
2009-12-19 | support IMAP select and LOGOUT | Daniel Stenberg | |
2009-12-19 | fix the ftp check delay timer to never be set below 1 to work correctly | Daniel Stenberg | |
in cases like test 190 | |||
2009-12-19 | fixed a precaution check in the cookie code, pointed out by Julien Chaffraix | Daniel Stenberg | |
2009-12-19 | Slack time reduction | Yang Tse | |
2009-12-19 | Added runtests.pl '-r' option for run time statistics | Yang Tse | |
2009-12-18 | server start and verification time as well as test preparation time | Yang Tse | |
data is required in order to closer match total test execution time. | |||
2009-12-18 | Added test harness simple time execution stats | Yang Tse | |
2009-12-17 | Comment out hi resolution time logging to verify if this is what might | Yang Tse | |
be contributing 90 additional seconds to the total time some autobuilds now need to make a full test-run. | |||
2009-12-17 | Fix compilation failure | Yang Tse | |
2009-12-17 | Test harness process control enhancements | Yang Tse | |
2009-12-17 | uh, assign the bool it points to properly | Daniel Stenberg | |
2009-12-17 | Stop overloading the conn->protocol field with the PROT_MISSING bit. It | Daniel Stenberg | |
really didn't belong there and had no real point. | |||
2009-12-17 | Remove pointless storing of the protocol as a string within the connectdata | Daniel Stenberg | |
struct, and instead use the already stored string in the handler struct. | |||
2009-12-17 | - David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when | Daniel Stenberg | |
available. | |||
2009-12-17 | gettimeofday() requires perl version newer than 5.6 | Yang Tse | |
2009-12-16 | Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned out I | Daniel Stenberg | |
was a bit too quick and broke test case 1101 with that change. The order of some of the setups is sensitive. I now changed it slightly again. | |||
2009-12-16 | Test harness process control enhancements | Yang Tse | |
2009-12-16 | Test #1106 needs an ftp enabled client | Yang Tse | |
2009-12-16 | Test harness process control enhancements | Yang Tse | |
2009-12-14 | - Jon Nelson found a regression that turned out to be a flaw in how libcurl | Daniel Stenberg | |
detects and uses proxies based on the environment variables. If the proxy was given as an explicit option it worked, but due to the setup order mistake proxies would not be used fine for a few protocols when picked up from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added test case 1106 that verifies this functionality. (http://curl.haxx.se/bug/view.cgi?id=2913886) | |||
2009-12-14 | Fix compiler warning | Yang Tse | |
2009-12-14 | Prevent perl script dying messages in output, since tearing down the pinpong | Yang Tse | |
server in this way, upon sysread failures, is part of the expected behavior. | |||
2009-12-14 | Adjust uppercase protocol string usage | Yang Tse | |
2009-12-14 | Fix compiler warnings | Yang Tse | |
2009-12-14 | Fix compiler warnings | Yang Tse | |
2009-12-13 | signal handling to cleanup on SIGINT and SIGTERM, followup | Yang Tse | |
2009-12-13 | reapply diff between revisions 1.103 and 1.102 | Yang Tse | |
2009-12-12 | updated with the new protocols | Daniel Stenberg | |
2009-12-12 | might as well output all supported protocols at the end of configure to | Daniel Stenberg | |
make it more obvious how the output will be | |||
2009-12-12 | show POP3S, IMAPS and SMTPS as protocols if SSL is enabled | Daniel Stenberg | |
2009-12-12 | support disabling POP3, IMAP and SMTP and now they also appear in curl-config | Daniel Stenberg | |
--protocols output | |||
2009-12-12 | split out more protocol-specific structs from urldata.h into their own | Daniel Stenberg | |
protocol-specific header files | |||
2009-12-12 | IMAP, POP3 and SMTP support | Daniel Stenberg | |
2009-12-12 | introducing IMAP, POP3 and SMTP support (still lots of polish left to do) | Daniel Stenberg | |
2009-12-11 | Prevent rewinding unless pipelining. | Yang Tse | |
See http://curl.haxx.se/mail/lib-2009-12/0107.html | |||
2009-12-11 | Removed function prototype without implementation | Yang Tse | |
2009-12-10 | - Siegfried Gyuricsko found out that the curl manual said --retry would retry | Daniel Stenberg | |
on FTP errors in the transient 5xx range. Transient FTP errors are in the 4xx range. The code itself only tried on 5xx errors that occured _at login_. Now the retry code retries on all FTP transfer failures that ended with a 4xx response. (http://curl.haxx.se/bug/view.cgi?id=2911279) | |||
2009-12-10 | argh, use the correct bug id | Daniel Stenberg | |
2009-12-10 | - Constantine Sapuntzakis figured out a case which would lead to libcurl | Daniel Stenberg | |
accessing alredy freed memory and thus crash when using HTTPS (with OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order of cleaning things up. I fixed it. (http://curl.haxx.se/bug/view.cgi?id=2891591) | |||
2009-12-10 | minor indent change | Daniel Stenberg | |
2009-12-10 | - Fixed curl erroneously reporting output stream write failures with ↵ | Yang Tse | |
disabled buffering |