aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-04-26Made defines instead of plain numbers for the Curl_resolv() return code toDaniel Stenberg
make the code easier to read
2004-04-26typedef CURL in the curl.h file instead of only having a single useful typedefDaniel Stenberg
in the separate types.h
2004-04-26IDN adjustments and host cleanups by GisleDaniel Stenberg
2004-04-26no longer include curl/types.h, it serves no purposeDaniel Stenberg
2004-04-26ignore the curl/types.h header fileDaniel Stenberg
2004-04-26Moved down the ares check again to the bottom of the script since itDaniel Stenberg
modified the compiler and link options so nothing can be tested for after this check, as the c-ares lib might not have been built yet!
2004-04-26added the new files to the buildDaniel Stenberg
2004-04-26"configure summary"Daniel Stenberg
2004-04-26Removed the FTPS test cases, they only annoy us as they don't work for anyoneDaniel Stenberg
anywhere. We need to write a better ftps-server for test purposes and then we can re-introduced FTPS tests.
2004-04-26Curl_ip2addr() now takes an in_addr_t argument instead to prevent compilerDaniel Stenberg
warnings
2004-04-26removed assignment of variable never usedDaniel Stenberg
2004-04-26Tor Arntsen fixed a 'Statement not reachable'-warningDaniel Stenberg
2004-04-26Kim Karlsson pointed out that error 57 was wrongly documentedDaniel Stenberg
2004-04-26TommyTam made a patch to handle stdin redirection for win32.Daniel Stenberg
2004-04-26some fixed, one removed, edited some. 7.12.0 in progress.Daniel Stenberg
2004-04-26the recent commits explainedDaniel Stenberg
2004-04-26Major hostip.c cleanup and split into multiple files and easier #ifdefDaniel Stenberg
usage.
2004-04-26supports showing "IDN" as a libcurl feature, now outputs the featuresDaniel Stenberg
in alphabetical order
2004-04-26added libidn awarenessDaniel Stenberg
2004-04-26added many commentsDaniel Stenberg
2004-04-26major update of the error stringsDaniel Stenberg
2004-04-26added commentsDaniel Stenberg
2004-04-26added function headers and commentsDaniel Stenberg
2004-04-26--with-libidn[=PATH] is now supportedDaniel Stenberg
2004-04-26the next release is planned to become 7.12.0Daniel Stenberg
2004-04-26start all over againDaniel Stenberg
2004-04-267.11.2 coming todayDaniel Stenberg
2004-04-25updated the warning text when SSL is explicitly disabledDaniel Stenberg
2004-04-25USE_MANUAL is now defined by defaultDaniel Stenberg
2004-04-25moved older changes to the CHANGES.2003 fileDaniel Stenberg
2004-04-25disable-manualDaniel Stenberg
2004-04-25make the generated hugehelp.c file use the USE_MANUAL define so that itDaniel Stenberg
will be properly built with configure --disable-manual even if the source file is already present
2004-04-24test164 HTTP range with multiple rangesDaniel Stenberg
2004-04-23removed a memory leak when doing a windows threaded resolve and it failedDaniel Stenberg
2004-04-23 Gisle Vanem found and fixed a memory leak when doing (failing) WindowsDaniel Stenberg
threaded name resolves.
2004-04-23only a minor comment/format changeDaniel Stenberg
2004-04-23Replaced Curl_FormReadOneLine with Curl_formpostheader as that is the only useDaniel Stenberg
for it. It saves one extra copy of the header. I also added comments for several functions in formdata.c
2004-04-23 o --proxy-ntlm now checks if libcurl supports NTLM before using itDaniel Stenberg
o minor --fail with authentication bugfix
2004-04-23--proxy-ntlm fix and test case 163Daniel Stenberg
2004-04-23Made --proxy-ntlm check if the underlying library actually supports NTLMDaniel Stenberg
2004-04-23minor format fixDaniel Stenberg
2004-04-23added test 163 - a simple test case that use -F field<file, to verify thatDaniel Stenberg
we can pass on "odd" characters (newline, CR, tab) like this.
2004-04-23No longer uses the valgrind option '--logfile-fd', we use the --logfileDaniel Stenberg
option instead (even though it appends the pid to the file name, making it harder to figure out its name to parse it after a test has run). Also made sure we only use valgrind for the actual test command command lines, not when for example running curl to detect if there are any already running servers are present etc.
2004-04-23define the obsolete options to different values to prevent "duplicate case"Daniel Stenberg
situtations in bindings that still have switch() cases for them
2004-04-23require SSL as otherwise NTLM doesn't work!Daniel Stenberg
2004-04-22missing braceDaniel Stenberg
2004-04-22allow newlines in the contents when doing -F "var=[contents]"Daniel Stenberg
Robert Marlow reported.
2004-04-22- David Byron found and fixed a small bug with the --fail and authenticationDaniel Stenberg
stuff added a few weeks ago. Turns out that if you specify --proxy-ntlm and communicate with a proxy that requires basic authentication, the proxy properly returns a 407, but the failure detection code doesn't realize it should give up, so curl returns with exit code 0. Test case 162 verifies this.
2004-04-22allow newlines in the contents when doing -F "var=[contents]"Daniel Stenberg
2004-04-22removed Curl_ftp_quit() as it was turned into a static in ftp.cDaniel Stenberg