Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-23 | fix socket data type | Yang Tse | |
2010-02-22 | fix socket data type and logging format in debug tracking socket functions | Yang Tse | |
2010-02-22 | convert Curl_ultous() and Curl_ultouc() functions to curlx_ultous() and | Yang Tse | |
curlx_ultouc(), exposing them through curlx.h to allow proper code reuse later in our test harness. | |||
2010-02-22 | updated sources | Yang Tse | |
2010-02-22 | _ Adjusted RFC821 HELO fallback and enabled test804 | Patrick Monnerat | |
2010-02-22 | - Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account. | Patrick Monnerat | |
- SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback. | |||
2010-02-22 | add header inclusion | Yang Tse | |
2010-02-22 | fix compiler warning | Yang Tse | |
2010-02-21 | fix compiler warning | Yang Tse | |
2010-02-21 | clarify more details on section "2.1 More non-blocking" | Daniel Stenberg | |
2010-02-21 | TFTP transfers are not blocking since 7.20.0 | Daniel Stenberg | |
2010-02-20 | - Fixed the SMTP compliance by making sure RCPT TO addresses are specified | Daniel Stenberg | |
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now get angle bracket wrapping automatically by libcurl unless the recipient starts with an angle bracket as then the app is assumed to deal with that properly on its own. | |||
2010-02-20 | - I made the SMTP code expect a 250 response back from the server after the | Daniel Stenberg | |
full DATA has been sent, and I modified the test SMTP server to also send that response. As usual, the DONE operation that is made after a completed transfer is still not doable in a non-blocking way so this waiting for 250 is unfortunately made blockingly. | |||
2010-02-20 | corected a comment and wrapped a few longish lines | Daniel Stenberg | |
2010-02-20 | fix compiler warning | Yang Tse | |
2010-02-20 | fix compiler warning | Yang Tse | |
2010-02-20 | fix compiler warning | Yang Tse | |
2010-02-19 | fix compiler warning | Yang Tse | |
2010-02-18 | fix compiler warning | Yang Tse | |
2010-02-17 | ares_reinit() | Daniel Stenberg | |
- To allow an app to force a re-read of /etc/resolv.conf etc, pretty much like the res_init() resolver function offers | |||
2010-02-17 | use curl standard indentation and line lengths | Daniel Stenberg | |
2010-02-16 | replaced tabs with spaces | Yang Tse | |
2010-02-16 | fix Content-Length validation | Yang Tse | |
2010-02-15 | use (void) in front of fwrite() calls that ignore the return code | Daniel Stenberg | |
2010-02-15 | fix compiler warning: conversion from "long" to "size_t" may lose sign | Yang Tse | |
2010-02-15 | fix compiler warning: conversion from "long" to "size_t" may lose sign | Yang Tse | |
2010-02-15 | -w speed_download and speed_upload are measured in bytes per second | Daniel Stenberg | |
2010-02-14 | 75. NTLM authentication involving unicode user name or password. | Daniel Stenberg | |
http://curl.haxx.se/mail/lib-2009-10/0024.html http://curl.haxx.se/bug/view.cgi?id=2944325 | |||
2010-02-14 | removed trailing whitespace | Yang Tse | |
2010-02-14 | fix compiler warning | Yang Tse | |
2010-02-14 | Overhauled test suite getpart() function. Fixing potential out of bounds | Yang Tse | |
stack and memory overwrites triggered with huge test case definitions. | |||
2010-02-13 | - Martin Hager reported and fixed a problem with a missing quote in libcurl.m4 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2951319) | |||
2010-02-13 | used allways #ifdef / #ifndef; | Gunter Knauf | |
moved gethostbyname_thread() to #else case to avoid 'not used' compiler warning. | |||
2010-02-13 | replaced tabs by spaces, removed trailing tabs/spaces. | Gunter Knauf | |
2010-02-13 | - Tom Donovan fixed the CURL_FORMAT_* defines when building with cmake. | Daniel Stenberg | |
2010-02-12 | - Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses | Daniel Stenberg | |
in the same RCPT TO line, when they should be sent in separate single commands. I updated test case 802 to verify this. - I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl tool which made it try to output it as string for the --libcurl feature which could lead to crashes. | |||
2010-02-12 | CURLOPT_MAIL_RCPT is *not* a string so we must not try to printf() it | Daniel Stenberg | |
2010-02-12 | free --mail-from strings properly | Daniel Stenberg | |
2010-02-11 | _ Make it compilable again on OS400. | Patrick Monnerat | |
_ Upgrade OS400 EBCDIC wrappers for new options. _ Upgrade ILE/RPG bindings to current state. | |||
2010-02-11 | mention last changes | Yang Tse | |
2010-02-11 | Steven M. Schweda updated VMS readme file | Yang Tse | |
2010-02-11 | Steven M. Schweda removed batch_compile.com and defines.com | Yang Tse | |
2010-02-11 | Steven M. Schweda fixed: | Yang Tse | |
VMS builder bad behavior when used in a batch job. Various ".LIS" and ".MAP" files created without being requested by a "LIST" command-line option, and in the wrong place, too. Some minor typographical changes. | |||
2010-02-10 | Mention the minimum size of CURL_MAX_WRITE_SIZE | Dan Fandrich | |
2010-02-10 | - remove extra "\r\n" from doc404_RTSP | Yang Tse | |
- avoid memory alignment issue when setting RTSP packet length | |||
2010-02-09 | Removed some erroneous "compressed" key words | Dan Fandrich | |
2010-02-09 | start working on 7.20.1 | Daniel Stenberg | |
2010-02-09 | spell and 7.20.0 | Daniel Stenberg | |
2010-02-09 | - When downloading compressed content over HTTP and the app as asked libcurl | Daniel Stenberg | |
to automatically uncompress it with the CURLOPT_ENCODING option, libcurl could wrongly provide the callback with more data than what the maximum documented amount. An application could thus get tricked into badness if the maximum limit was trusted to be enforced by libcurl itself (as it is documented). This is further detailed and explained in the libcurl security advisory 20100209 at http://curl.haxx.se/docs/adv_20100209.html | |||
2010-02-09 | set VERSIONINFO accordingly for the 7.20.0 release | Daniel Stenberg | |