Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-01 | update copyright year since we are in 2010 now | Daniel Stenberg | |
2010-01-01 | added CURLOPT_FTP_USE_PRET | Daniel Stenberg | |
2010-01-01 | - Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This | Daniel Stenberg | |
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail. | |||
2009-12-31 | added descriptions for CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT | Daniel Stenberg | |
2009-12-31 | --mail-rcpt and --mail-from are starting to settle and work like this... | Daniel Stenberg | |
2009-12-31 | turned CURLOPT_MAIL_RCPT into a curl_slist list instead to support multiple | Daniel Stenberg | |
receivers, and made the command line tool thus support the option specified many times | |||
2009-12-31 | Use '_stunnel.log' file name ending for stunneled server logs | Yang Tse | |
2009-12-31 | VMS adjustments by Steven M. Schweda | Yang Tse | |
2009-12-31 | Subs for refactoring purposes | Yang Tse | |
2009-12-30 | CURLOPT_HEADERDATA was added in 7.10 | Daniel Stenberg | |
2009-12-30 | s/CURLOPT_WRITEHEADER/CURLOPT_HEADERDATA simply because it is a better name | Daniel Stenberg | |
2009-12-30 | modified to get the EHLO domain from the path part of the URL instead of the | Daniel Stenberg | |
user name | |||
2009-12-30 | moved the SMTP payload escape function into Curl_smtp_escape_eob and put | Daniel Stenberg | |
it in smtp.c | |||
2009-12-30 | (SMTP) support DATA better in the server and make sure to "escape" CRLF.CRLF | Daniel Stenberg | |
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines but instead test cases must be written to take them into account. Added test case 803 to verify dot-escaping. | |||
2009-12-30 | Oops, should have removed 'not' in previous commit. | Yang Tse | |
2009-12-30 | VMS build system enhancements by Steven M. Schweda and Craig A. Berry | Yang Tse | |
2009-12-30 | VMS specific preprocessor symbol checking adjustments | Yang Tse | |
2009-12-30 | VMS specific preprocessor symbol definition adjustments | Yang Tse | |
2009-12-30 | Replaced stricmp() usage with our portable strequal() | Yang Tse | |
2009-12-29 | move HTTP-specific functions to http.c where they belong | Daniel Stenberg | |
2009-12-29 | test 802 is the first SMTP test, although not strictly SMTP yet... | Daniel Stenberg | |
2009-12-29 | Mention last changes | Yang Tse | |
2009-12-29 | - Fix configure_socket() to use ares_socket_t instead of int data type. | Yang Tse | |
2009-12-29 | - Where run-time error checks enabling compiler option /GZ was used it is now | Yang Tse | |
replaced with equivalent /RTCsu for Visual Studio 2003 and newer versions. - Compiler option /GX is now replaced with equivalent /EHsc for all versions. | |||
2009-12-28 | Leftover from previous commit | Yang Tse | |
2009-12-28 | Initial refactoring step for server name strings centralized generation | Yang Tse | |
2009-12-27 | Julien Chaffraix's clarifications | Daniel Stenberg | |
2009-12-27 | Adjust FreeBSD version check to follow FreeBSD Porter's Handbook | Yang Tse | |
http://www.freebsd.org/doc/en/books/porters-handbook/porting-versions.html | |||
2009-12-26 | symbols added in the CVS version meant for 7.20.0 | Daniel Stenberg | |
2009-12-26 | global variables reordering/refactoring/commenting | Yang Tse | |
2009-12-25 | add pointer to the bug report | Daniel Stenberg | |
2009-12-25 | - Renato Botelho and Peter Pentchev brought a patch that makes the libcurl | Daniel Stenberg | |
headers work correctly even on FreeBSD systems before v8. | |||
2009-12-25 | first shot at actually doing the SMTP upload as well, not doing the proper | Daniel Stenberg | |
end-of-body treatment | |||
2009-12-25 | When verifying the SMTP server I had to add some hackery since SMTP in itself | Daniel Stenberg | |
doesn't really return any body data to check so I made SMTP check "headers" as well. | |||
2009-12-25 | first basic SMTP support | Daniel Stenberg | |
2009-12-24 | Adjust test number mismatch | Yang Tse | |
2009-12-24 | Enable warnings | Yang Tse | |
2009-12-24 | Fix warnings | Yang Tse | |
2009-12-23 | Fix warnings | Yang Tse | |
2009-12-23 | Back out some pingpong server stopping changes introduced last week in | Yang Tse | |
order to re-use 'classic' stopping and allow taking test-suite run time references from this state. | |||
2009-12-22 | use Time::HiRes whenever available, independently of perl version | Yang Tse | |
2009-12-22 | log a message when continuing once sleep time is over | Yang Tse | |
2009-12-21 | - Ingmar Runge noticed that Windows config-win32.h configuration file | Yang Tse | |
did not include a definition for HAVE_CLOSESOCKET which resulted in function close() being inappropriately used to close sockets. | |||
2009-12-21 | Make 'classic' output end of a test-suite run become again the end | Yang Tse | |
of output, even when run time statistics are shown. | |||
2009-12-21 | Move stopping of servers instructed by test definition, after the removal of | Yang Tse | |
server logs advisor read lock and before test results verifications are done. When stopping a pingpong server, stop server before its slaves. | |||
2009-12-21 | test 566 was missing | Daniel Stenberg | |
2009-12-21 | dead_child_handler also takes care of reaping pingpong server dead child ↵ | Yang Tse | |
processes | |||
2009-12-21 | Reap processes dead children ASAP without blocking | Yang Tse | |
2009-12-21 | Reinstate hi resolution time logging since this is not what is | Yang Tse | |
now adding 90 extra seconds to the total time some autobuilds need to make a full test-run. | |||
2009-12-21 | Take new SMTP definitions into account in OS400 wrapper and RPG binding | Patrick Monnerat | |