aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-03-29postpone theseDaniel Stenberg
2005-03-29When doing FTP-SSL, advance to the next state properly when the response toDaniel Stenberg
AUTH has been received successfully.
2005-03-29Fixed the FTP response reader function to properly deal with responses splitDaniel Stenberg
up in several chunks when read.
2005-03-29Made the server send data to the control/data connections using two dedicatedDaniel Stenberg
functions. This enabled me to add a function that automatically delays between each byte, to proper test curl's ability to read FTP server responses sent in many (small) chunks. See also upcoming libcurl fixes...
2005-03-28Based on Augustus Saunders' comments and findings, the HTTP output authDaniel Stenberg
function was fixed to use the proper proxy authentication when multiple ones were added as accepted. test 239 and test 243 were added to repeat the problems and verify the fixes.
2005-03-28Added --proxy-anyauthDaniel Stenberg
2005-03-28modified some log outputs, added comment about auth required as used inDaniel Stenberg
test 154
2005-03-22can you spell copy and paste error for me loud and clear? ;-PDaniel Stenberg
2005-03-22provide HTML and PDF versions of the man pages in the dist archiveDaniel Stenberg
2005-03-22When cross-compiling, we do some better checking for the NI_WITHSCOPEID ↵Daniel Stenberg
option instead of just assuming it is present.
2005-03-22CURL_EXTERN is already in <curl/curl.h>.Gisle Vanem
2005-03-22Prevent redefinition warning with CURLDEBUG.Gisle Vanem
2005-03-22moved out the changes from 2004 to CHANGES.2004Daniel Stenberg
2005-03-22Fixed typo.Dan Fandrich
2005-03-21the same fix here too, typecast to prevent win32 compiler warningDaniel Stenberg
2005-03-21typecase to fix win32 compiler warning (and intended as other code is)Daniel Stenberg
2005-03-21Modified the VALID_SOCK() macro to become VERIFY_SOCK() instead. It is slighlyDaniel Stenberg
more involved, but should hopefully not generate any compiler warnings on win32 systems (that can't check the socket based on the numeric).
2005-03-21Make NTLM tests depend on the NTLM feature at not SSL, since the NTLM supportDaniel Stenberg
is no longer only present when built with SSL support.
2005-03-21format mistakeDaniel Stenberg
2005-03-20removed a (fairly useless) debug output just to compile without warningDaniel Stenberg
2005-03-20silence win32 compiler warningsDaniel Stenberg
2005-03-20attempt to fix the ares link breakage with --enable-debug in libcurl and hereDaniel Stenberg
2005-03-19silence warnings on win32 about static functions that are never usedDaniel Stenberg
2005-03-19some additional debug outputDaniel Stenberg
2005-03-19fix compiler warningDaniel Stenberg
2005-03-18Fixed spelling of --runtestoptsDan Fandrich
2005-03-18Netware builds don't use configure.Dan Fandrich
2005-03-18fix by Kyrre KristiansenDaniel Stenberg
2005-03-18adjust to use plain 'make' even for cross-compiles if using configure-Daniel Stenberg
style build
2005-03-18a Common Lisp bindingDaniel Stenberg
2005-03-17Change the bogus address used in test237 to be more reliable when runDan Fandrich
on a host with a buggy resolver that strips all but the bottom 8 bits of each octet. The resolved address in this case (192.0.2.127) is guaranteed never to belong to a real host (see RFC3330).
2005-03-17Use the proper macro to do uClibc detection.Dan Fandrich
2005-03-17include inet_pton.hDaniel Stenberg
2005-03-17added descriptionsDaniel Stenberg
2005-03-17update yearDaniel Stenberg
2005-03-17don't set TEST_F to blank when --runtestopts isn't used, as that will overrideDaniel Stenberg
the default options set in the Makefile
2005-03-17support multiple error codes for a test case since some things just varyDaniel Stenberg
between platforms
2005-03-17add 'FTP ASCII transfers' here, since they seem to be frequently attemptedDaniel Stenberg
these days...!
2005-03-17add new optionDaniel Stenberg
2005-03-17add new fileDaniel Stenberg
2005-03-17its a startDaniel Stenberg
2005-03-17use Curl_inet_pton(), not inet_pton().Daniel Stenberg
2005-03-17Added the --runtestsopts option to testcurl.pl to override the defaultDan Fandrich
options used by runtests.pl during testing (useful for disabling valgrind).
2005-03-16Removed references to config-vms.h from the makefiles.Dan Fandrich
2005-03-16Removed old VMS config files (on behalf of Marty Kuhrt). The VMS buildDan Fandrich
scripts use the version in packages/vms/
2005-03-16moreDaniel Stenberg
2005-03-16check for the HTTPS server in a manner similar to how we check for the HTTPDaniel Stenberg
server
2005-03-16- Tru64 and some IRIX boxes seem to not like test 237 as it is. TheirDaniel Stenberg
inet_addr() functions seems to use &255 on all numericals in a ipv4 dotted address which makes a different failure... Now I've modified the ipv4 resolve code to use inet_pton() instead in an attempt to make these systems better detect this as a bad IP address rather than creating a toally bogus address that is then passed on and used.
2005-03-16Fixed some compiler warnings I should have noticed before.Dan Fandrich
2005-03-15Fixed ftp support with uClibc due to differing inet_ntoa_r() behaviour.Dan Fandrich