aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-25Constantine Sapuntzakis provided initial thread abstraction layerYang Tse
2010-01-25make Curl_handler_*_proxy definition staticYang Tse
2010-01-25Updated minimum library sizesDan Fandrich
2010-01-25fix compiler warningYang Tse
2010-01-24Julien Chaffraix corrected bad #elif lines to silence warningsDaniel Stenberg
2010-01-24HAVE_GETADDRINFO_THREADSAFE definition for non-configure win32 buildsYang Tse
2010-01-23Mention -J changeBjorn Stenberg
2010-01-23Added -J/--remote-header-name.Bjorn Stenberg
2010-01-23"remove progress meter from libcurl" at next API breakDaniel Stenberg
2010-01-23add inclusion of curl_memory.hYang Tse
2010-01-23adjust preprocessor symbol definition check relative to resolver specialtyYang Tse
2010-01-23PKTSIZE might have been already defined in arpa/tftp.hYang Tse
2010-01-23Include "curl_memory.h" to get the strdup replacement when necessaryDan Fandrich
2010-01-22wrap long lines and do some indent policingDaniel Stenberg
2010-01-22Definitions of resolver specialty compile-time defines CURLRES_* movedYang 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-22adjust rtsp protocol support in curl-config and libcurl.pc when http is disabledYang Tse
2010-01-22deal with the possibility that CURL_DISABLE_RTSP may already be definedYang Tse
2010-01-22fix compiler warning: statement is unreachableYang Tse
2010-01-22fix compilation when http is disabledYang Tse
2010-01-22disabling of rtsp when http isn't enabled required here for non-configure ↵Yang Tse
systems
2010-01-22wrap long lines, remove (very old) attribution from codeDaniel Stenberg
2010-01-22cleanups by Julien ChaffraixDaniel Stenberg
2010-01-22alphabetically sort the list of supported protocolsDaniel Stenberg
2010-01-22In spite claiming to tbe disabled by default, RTSP is enabled and it nowDaniel Stenberg
also says so. I also made the list of protocols get sorted.
2010-01-22expanded to provide info about the newer protocols tooDaniel Stenberg
2010-01-22s/RTPFUNCTION/INTERLEAVEFUNCTION/Daniel Stenberg
s/RTPDATA/INTERLEAVEDATA/
2010-01-22keep lines shorter than 80 columns, and reduce/remove the use of the wordDaniel Stenberg
'note' in most description as it is mostly useless.
2010-01-22Julien Chaffraix adjusted "<name> section" line lengthYang Tse
2010-01-22Constantine Sapuntzakis refactoring of async callbacks, allowingYang Tse
removal of Curl_addrinfo_copy(), Curl_addrinfo6_callback(), and Curl_addrinfo4_callback()
2010-01-21Added rtsp.c to the non-configure target build filesDan Fandrich
2010-01-21fix compiler warningYang Tse
2010-01-21make tftp_translate_code() static, it is only used from within tftp.cYang Tse
2010-01-21fix warning triggered when debugging on cygwinYang Tse
2010-01-21allow exporting of exe_ext() subYang Tse
2010-01-21improve displaylogcontent() sub fixing a warningYang Tse
2010-01-21remove typedef we ended up not usingDaniel Stenberg
2010-01-21Chris Conroy brought support for RTSP transfers, and with it comes 8(!) newDaniel Stenberg
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
2010-01-21Julien Chaffraix fixed line lengthsDaniel Stenberg
2010-01-21Julien Chaffraix removed an old obsolete typedefDaniel Stenberg
2010-01-21Yun Fu pointed out a flaw in the loop that checks handles, and I indentedDaniel Stenberg
the code more curl-style
2010-01-21"5.3 Sort outgoing cookies" removed, we now sort themDaniel Stenberg
2010-01-20SIGTERM is the signal to trap here, SIGKILL can't be caught.Yang Tse
2010-01-20Use killsockfilters() to kill sockfilter processes, this ensures that whenYang Tse
killing a sockfilter process the actual PID from the pid file is used and not the one returned by open2() which might be different.
2010-01-20Allow killsockfilters() to take a 5th optional parameter that when providedYang Tse
indicates that only one of the two possible sockfilter processes should be killed. Valid values for this parameter are 'main' and 'data'.
2010-01-20Use delete() to unset environment variables instead of assigning undef whichYang Tse
generates warning 'Use of uninitialized value in scalar assignment' with perl versions older than 5.10
2010-01-20Adjust valgrind logs file name detection.Yang Tse
Adjust environment vars setting and restoring from test definition. Avoid using strftime in torture sub.
2010-01-20modified test case 8 to also make sure that we deal with cookies usingDaniel Stenberg
identical names but different paths properly
2010-01-19- As was pointed out on the http-state mailing list, the order of cookies in aDaniel 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-19oops, I forgot to cvs add this before my previous commit (Dan FandrichDaniel Stenberg
pointed it out to me)
2010-01-19- David McCreedy brought a fix and a new test case (129) to make libcurl workDaniel 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.