Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-04 | Fix compiler warning: unused variable | Yang Tse | |
2010-02-03 | Changed the Watcom makefiles to make them easier to keep in sync with | Dan Fandrich | |
Makefile.inc since that can't be included directly. | |||
2010-02-03 | Fix OOM handling | Yang Tse | |
2010-02-03 | Fix portability issue related with unaligned memory access | Yang Tse | |
2010-02-03 | Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', ↵ | Yang Tse | |
possible loss of data | |||
2010-02-02 | Fix compiler warning: conditional expression is constant | Yang Tse | |
2010-02-02 | Fix compiler warning: local variable may be used without having been ↵ | Yang Tse | |
initialized. | |||
2010-02-02 | Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', ↵ | Yang Tse | |
possible loss of data | |||
2010-02-02 | Fix compiler warning: variable was set but never used | Yang Tse | |
Simplify preprocessor symbol checking | |||
2010-02-02 | Julien Chaffraix pointed out a comment mistake, and I re-indented the code | Daniel Stenberg | |
slightly while editing | |||
2010-02-01 | Conroy's fix to make the code match with the RTP documentation regarding | Yang Tse | |
writing out the whole header. The docs say it writes the whole header, but the code (before this patch) did not write out the leading $. | |||
2010-02-01 | We introduce a loop in lib/multi.c around all calls to multi_runsingle() and | Daniel Stenberg | |
simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added benefit that this goes in line with my long-term wishes to get rid of the CURLM_CALL_MULTI_PERFORM all together from the public API. | |||
2010-01-30 | Make Curl_pop3_write() additionally truncate trailing POP3_EOB from received | Yang Tse | |
string buffer, otherwise Curl_client_write() call with zero size would write to the end of string buffer including matched POP3_EOB. | |||
2010-01-29 | WIN32 fix, _beginthreadex() may return either 0 or -1L upon failure | Yang Tse | |
2010-01-29 | fix errno usage for WIN32 builds | Yang Tse | |
2010-01-29 | RTSP followup fix. Both the pipelined and non-pipelined case need to | Yang Tse | |
check for (excess > 0 && !k->ignorebody). | |||
2010-01-28 | fix printf-style format strings | Yang Tse | |
2010-01-28 | fix printf-style format strings | Yang Tse | |
2010-01-28 | Chris Conroy's RTSP followup fixes | Yang Tse | |
2010-01-27 | fix compiler warning | Yang Tse | |
2010-01-26 | - Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the | Daniel Stenberg | |
proxy that cannot be resolved when using c-ares. This matches the behaviour when not using c-ares. | |||
2010-01-26 | Andre Guibert de Bruet improved the libssh2 error code translation | Daniel Stenberg | |
2010-01-26 | resolver selection for non-configure Windows builds, default is threaded DNS | Yang Tse | |
2010-01-26 | add curl_threads.c to non-configure target build files | Yang Tse | |
2010-01-26 | onstantine Sapuntzakis threaded resolver enhancements | Yang Tse | |
2010-01-25 | Constantine Sapuntzakis threaded resolver enhancements | Yang Tse | |
2010-01-25 | Constantine Sapuntzakis provided initial thread abstraction layer | Yang Tse | |
2010-01-25 | make Curl_handler_*_proxy definition static | Yang Tse | |
2010-01-25 | fix compiler warning | Yang Tse | |
2010-01-24 | Julien Chaffraix corrected bad #elif lines to silence warnings | Daniel Stenberg | |
2010-01-24 | HAVE_GETADDRINFO_THREADSAFE definition for non-configure win32 builds | Yang Tse | |
2010-01-23 | add inclusion of curl_memory.h | Yang Tse | |
2010-01-23 | adjust preprocessor symbol definition check relative to resolver specialty | Yang Tse | |
2010-01-23 | Include "curl_memory.h" to get the strdup replacement when necessary | Dan Fandrich | |
2010-01-22 | wrap long lines and do some indent policing | Daniel Stenberg | |
2010-01-22 | Definitions of resolver specialty compile-time defines CURLRES_* moved | Yang Tse | |
from hostip.h to setup.h in order to allow proper inclusion in any file. This represents no functional change at all in which resolver is used, everything still works as usual, internally and externally there is no difference in behavior. | |||
2010-01-22 | deal with the possibility that CURL_DISABLE_RTSP may already be defined | Yang Tse | |
2010-01-22 | fix compiler warning: statement is unreachable | Yang Tse | |
2010-01-22 | fix compilation when http is disabled | Yang Tse | |
2010-01-22 | disabling of rtsp when http isn't enabled required here for non-configure ↵ | Yang Tse | |
systems | |||
2010-01-22 | wrap long lines, remove (very old) attribution from code | Daniel Stenberg | |
2010-01-22 | alphabetically sort the list of supported protocols | Daniel Stenberg | |
2010-01-22 | s/RTPFUNCTION/INTERLEAVEFUNCTION/ | Daniel Stenberg | |
s/RTPDATA/INTERLEAVEDATA/ | |||
2010-01-22 | Constantine Sapuntzakis refactoring of async callbacks, allowing | Yang Tse | |
removal of Curl_addrinfo_copy(), Curl_addrinfo6_callback(), and Curl_addrinfo4_callback() | |||
2010-01-21 | Added rtsp.c to the non-configure target build files | Dan Fandrich | |
2010-01-21 | fix compiler warning | Yang Tse | |
2010-01-21 | make tftp_translate_code() static, it is only used from within tftp.c | Yang Tse | |
2010-01-21 | Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new | Daniel Stenberg | |
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit. | |||
2010-01-19 | - As was pointed out on the http-state mailing list, the order of cookies in a | Daniel Stenberg | |
HTTP Cookie: header _needs_ to be sorted on the path length in the cases where two cookies using the same name are set more than once using (overlapping) paths. Realizing this, identically named cookies must be sorted correctly. But detecting only identically named cookies and take care of them individually is harder than just to blindly and unconditionally sort all cookies based on their path lengths. All major browsers also already do this, so this makes our behavior one step closer to them in the cookie area. Test case 8 was the only one that broke due to this change and I updated it accordingly. | |||
2010-01-19 | - David McCreedy brought a fix and a new test case (129) to make libcurl work | Daniel Stenberg | |
again when downloading files over FTP using ASCII and it turns out that the final size of the file is not the same as the initial size the server reported. This is very common since servers don't take the newline conversions into account. |