aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-07-22minor reordering in OS/400 config/setup filesYang Tse
2008-07-21Change recvfrom's sixth argument data type to the 'historically standard' 'int'Yang Tse
data type for systems where this sixth argument is prototyped as a void pointer. Start of thread: http://curl.haxx.se/mail/lib-2008-07/0153.html
2008-07-21Undefine 'byte' due to dict.c.Gisle Vanem
2008-07-21use prototypes to improve getservbyport_r detectionYang Tse
2008-07-21fix compiler warning: implicit conversion from "long" to "int"Yang Tse
2008-07-21fix compiler warning: comparison between signed and unsignedYang Tse
2008-07-21Adjust recvfrom's sixth arg data type definition for NetWare (LIBC)Yang Tse
2008-07-21Use the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse
2008-07-21when recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this willYang Tse
now cause the definition of RECVFROM_TYPE_ARG2_IS_VOID, RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID, as appropriate.
2008-07-20Adjust DEC/Compaq C compiler settingsYang Tse
2008-07-20Remove showing additional info needed to debug configureYang Tse
failure to properly detect recvfrom arg types on Solaris
2008-07-20Added "pointer to void" as another data type to check for the sixth argument ofYang Tse
function recvfrom as a result of the info additionally logged when running on a Solaris system. The compiler error showed that the prototype being used on Solaris was the one declared in line 427 of "/usr/include/sys/socket.h" as: function(int, pointer to void, unsigned int, int, pointer to struct sockaddr, pointer to void) returning int
2008-07-19Temporarily show additional info needed to debug configureYang Tse
failure to properly detect recvfrom arg types on Solaris
2008-07-19Adjust DEC/Compaq C compiler settingsYang Tse
2008-07-18README.OS400 update for new string options.Patrick Monnerat
2008-07-18README.OS400 update for new string options.Patrick Monnerat
2008-07-17Fixed the XML syntax of a few test files.Dan Fandrich
2008-07-17RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now definedYang Tse
to the data type pointed by its respective argument and not the pointer type.
2008-07-16fix commentYang Tse
2008-07-16Configure process now checks availability of recvfrom() socket function andYang Tse
finds out its return type and the types of its arguments. Added definitions for non-configure systems config files, and introduced macro sreadfrom which will be used on udp sockets as a recvfrom() wrapper.
2008-07-16Initial DEC/Compaq C compiler detection and flagsYang Tse
2008-07-16Improved configure detection of number of arguments for getservbyport_rYang Tse
2008-07-15Allow --enable-largefile and --disable-largefile configurations.Yang Tse
Configure process no longer needs nor checks size of curl_off_t. Library will now be built with _REENTRANT symbol defined.
2008-07-15add comment for include pathsYang Tse
2008-07-15add comment for include pathsYang Tse
2008-07-15Added test1042 and test1043 to test -C - on HTTP.Dan Fandrich
2008-07-15Added test1040 and test1041 to test -C - on HTTP. Test 1041 failed so it'sDan Fandrich
added to DISABLED.
2008-07-14Move _REENTRANT definition earlier in lib/setup.hYang Tse
2008-07-14Removed inclusion of remaining system header files from configuration files.Yang Tse
These are included from lib/setup.h or specific source code file.
2008-07-14Inclusion of <extra/stricmp.h> and <extra/strdup.h> is moved to lib/setup.hYang Tse
2008-07-14Remove duplicate file inclusions. These are already done in lib/setup.hYang Tse
and lib/setup_once.h
2008-07-14Remove duplicate file inclusions. These are already done in lib/setup.hYang Tse
2008-07-14HTTP_ONLY definition check in lib/setup.h is now done once that configurationYang Tse
file has been included. In this way if symbol is defined in the config file it will no longer be ignored.
2008-07-11fix multiple header inclusion prevention definitionYang Tse
2008-07-11move multiple header inclusion prevention definition to top of fileYang Tse
2008-07-11Added missing multiple header inclusion prevention definitionYang Tse
2008-07-11Fixed test 553 to pass the torture test.Dan Fandrich
2008-07-11Avoid a potential zombie process when killing an old ftpserverDan Fandrich
2008-07-11document the exit codes 82 and 83 that are new in 7.19.0Daniel Stenberg
2008-07-11indent and comment cleanup (no code change)Daniel Stenberg
2008-07-11- Daniel Fandrich found out we didn't pass on the user-agent properly whenDaniel Stenberg
doing "proxy-tunnels" with non-HTTP prototols and that was simply because the code assumed the user-agent was only needed for HTTP.
2008-07-11Added test cases 1038 and 1039 to test Adrian Kreher's report that ftpDan Fandrich
uploads with -C - didn't resume properly, but the tests pass.
2008-07-11Changed slightly the SFTP quote commands chmod, chown and chgrp to onlyDan Fandrich
set the attribute that has changed instead of all possible ones. Hopefully, this will solve the "Permission denied" problem that Nagarajan Sreenivasan reported when setting some modes, but regardless, it saves a protocol round trip in the chmod case.
2008-07-10(Added in the section for CURLOPT_DNS_CACHE_TIMEOUT, pointed out on theDaniel Stenberg
curl-library list on July 9th 2008 by Mathew Hounsell) NOTE: the name resolve functions of various libc implementations don't re-read name server information unless explicitly told so (by for example calling Ires_init(3). This may cause libcurl to keep using the older server even if DHCP has updated the server info, and this may look like a DNS cache issue to the casual libcurl-app user.
2008-07-10--remote-name-allDaniel Stenberg
2008-07-10Fixed another OOM problem, this time with test 64.Dan Fandrich
2008-07-10Peter Lamberg filed bug report #2015126: "poll gives WSAEINVAL when POLLPRIYang Tse
is set in fdset.events" (http://curl.haxx.se/bug/view.cgi?id=2015126) which exactly pinpointed the problem only triggered on Windows Vista, provided reference to docs and also a fix. There is much work behind Peter Lamberg's excellent bug report. Thank You!
2008-07-10updated to match current realityDaniel Stenberg
2008-07-10fix compiler warningYang Tse
2008-07-10s/muse/mustDaniel Stenberg