Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-12 | Use platform's native types for recv() and send() arguments. | Yang Tse | |
2006-05-05 | additional renames of Curl_ourerrno => Curl_sockerrno | Daniel Stenberg | |
2006-05-04 | Roland Blom filed bug report #1481217 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows. | |||
2006-04-26 | David McCreedy brought line end conversions when doing FTP ASCII | Daniel Stenberg | |
transfers. They are done on non-windows systems and translate CRLF to LF. | |||
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2005-04-07 | GnuTLS support added. There's now a "generic" SSL layer that we use all over | Daniel Stenberg | |
internally, with code provided by sslgen.c. All SSL-layer-specific code is then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS). As far as possible, internals should not need to know what SSL layer that is in use. Building with GnuTLS currently makes two test cases fail. TODO.gnutls contains a few known outstanding issues for the GnuTLS support. GnuTLS support is enabled with configure --with-gnutls | |||
2005-03-14 | Removed security.h since it shadows an include file mingw needs when building | Daniel Stenberg | |
for SSPI support. The contents of the file has been moved into the krb4.h file. | |||
2005-01-21 | FTP third transfer support overhaul. See CHANGES for details. | Daniel Stenberg | |
2004-12-21 | oops, variables first then code | Daniel Stenberg | |
2004-12-21 | Prevent failf() from using the va_list variable more than once. | Daniel Stenberg | |
See bug report #1088962 and Single Unix Specification: http://www.opengroup.org/onlinepubs/007908799/xsh/vfprintf.html | |||
2004-12-06 | Fixed so that the final error message is sent to the verbose info "stream" | Daniel Stenberg | |
even if no errorbuffer is set. | |||
2004-10-12 | #include "strerror.h" to get the strerror proto | Daniel Stenberg | |
2004-10-12 | add proper error message when send() fails | Daniel Stenberg | |
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-07-29 | additional typecasts to please MIPSPro on 64bit IRIX | Daniel Stenberg | |
2004-06-18 | Gisle's "SSL patch" from June 16th 2004, modified by me as discussed on the | Daniel Stenberg | |
mailing list. | |||
2004-06-07 | prevent compiler warning with picky compilers | Daniel Stenberg | |
2004-06-07 | When sending info about which host that sends what, include proper direction | Daniel Stenberg | |
to/from, based on a suggestion from Alexander Krasnostavsky | |||
2004-06-03 | Alexander Krasnostavsky's FTP third party transfer (proxy) support | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-05-10 | curl_slist_append() fixed to clear up properly if a memory function fails | Daniel Stenberg | |
2004-05-05 | ERR_error_string() returns an unsigned long so we should use one of those | Daniel Stenberg | |
for the return code | |||
2004-04-21 | Fix the "lingering close" problem when re-using a connection, as test case | Daniel Stenberg | |
160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore. | |||
2004-03-10 | Minor edit to avoid an unreachable break and to remove the extra {} body | Daniel Stenberg | |
within the switch. | |||
2004-03-09 | Use curl_socket_t instead of int for holding sockets. The typedefs and | Daniel Stenberg | |
defines are in setup.h. | |||
2004-03-08 | Commented the Curl_read() arguments. | Daniel Stenberg | |
2004-02-26 | Clear up int/long/size_t/ssize_t usage a bit | Daniel Stenberg | |
2004-02-02 | clear the sockerror if no error was returned | Daniel Stenberg | |
2004-01-30 | Somewhat crude attempt at fixing the test 91 failures. I commit this now | Daniel Stenberg | |
so that the automatic testing hosts will test these changes over the weekend. | |||
2004-01-29 | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | |
warnings. Minor edits by me. | |||
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-12-02 | use the HAVE_KRB4 define instead of just KRB4 | Daniel Stenberg | |
2003-11-24 | FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe it | Daniel Stenberg | |
2003-10-27 | James Bursa's fix to prevent failf() to write outside its buffer boundary | Daniel Stenberg | |
2003-10-19 | better error output on SSL errors when receiving data - Georg Horn patch | Daniel Stenberg | |
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |
2003-08-11 | the new cookie functions that require 'data' passed in | Daniel Stenberg | |
2003-06-26 | use CURLDEBUG instead of MALLOCDEBUG for preprocessor conditions | Daniel Stenberg | |
2003-06-06 | Just moved around some logic in Curl_write() to make it easier to debug. | Daniel Stenberg | |
2003-05-06 | Kevin Delafield reported another case where we didn't correctly check for | Daniel Stenberg | |
EAGAIN but only EWOULDBLOCK, which caused badness on HPUX. We also check for and act the same on EINTR errors as well now. | |||
2003-05-01 | Use the proper Curl_ourerrno() function instead of plain errno, for better | Daniel Stenberg | |
portability. Also use Andy Cedilnik's compiler warning fixes. | |||
2003-04-09 | the default debugfunction shows incoming headers as well | Daniel Stenberg | |
2003-03-11 | syntax error | Daniel Stenberg | |
2003-03-11 | Christophe Demory fixed the check to work better for non-blocking on HP-UX | Daniel Stenberg | |
systems. Bug report #701749. | |||
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-07 | when sending an error message to the debugfunction, we append a newline so | Daniel Stenberg | |
that the output looks better | |||
2002-12-29 | return -1 even if SSL_pending() doesn't return non-zero, as we don't really | Daniel Stenberg | |
care how many bytes that is readable NOW. Philippe Raoult reported the bug in 7.10.3-pre3. | |||
2002-12-19 | Fixed the usage of SSL_read() to properly return -1 if the EWOULDBLOCK | Daniel Stenberg | |
situation occurs, which it previously didn't! This was reptoed by Evan Jordan in bug report #653022. Also, if ERROR_SYSCALL is returned from SSL_write(), include the errno number in the error string for easier error detection. | |||
2002-11-05 | Lehel Bernadt's fix to prevent debug message to get sent on errors when | Daniel Stenberg | |
debug wasn't enabled |