aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2004-01-23Proxy username and password on persistant connections could easily getDaniel Stenberg
messed up. Vincent Bronner detected this.
2004-01-23check the arguments to the socks5 function, as the name and password mightDaniel Stenberg
be NULL pointers, and if non-NULL if now support zero-length names/passwords
2004-01-23fixed the progress meter display for files >32 bit, Gisle Vanem reportedDaniel Stenberg
2004-01-23include curl.h for the typedefDaniel Stenberg
2004-01-23define SIZEOF_CURL_OFF_T if not already definedDaniel Stenberg
2004-01-22re-intended the code curl-styleDaniel Stenberg
2004-01-22return curl_off_t instead of long long, to work on more platformsDaniel Stenberg
2004-01-22it has strtollDaniel Stenberg
2004-01-22Gisle Vanem's fix, mingw as strtollDaniel Stenberg
2004-01-22attempt to fix 64bit seeking for Windows, does it work?Daniel Stenberg
2004-01-22use curl_off_t instead of off_t!Daniel Stenberg
2004-01-22use the proper type for formposts, not the deprecated oneDaniel Stenberg
2004-01-22added the missing proto for the still unused quit functionDaniel Stenberg
2004-01-21use the proper timecond defines, not the obsolete ones I've removed! ;-)Daniel Stenberg
The initial QUIT-sending code is added, but not yet used due to the issues previously mentioned on the mailing list.
2004-01-21use the proper timecond defines, not the obsolete ones!Daniel Stenberg
2004-01-16Gisle Vanem's patch for variables that "might be used uninitialized"Daniel Stenberg
2004-01-16silly meDaniel Stenberg
2004-01-16Avoid Curl_if2ip() on Interix as well. Fix by Rodney.Daniel Stenberg
2004-01-15use the %dk display for one extra k of progressDaniel Stenberg
2004-01-15added missing parenthesisDaniel Stenberg
2004-01-14rearranged the connect() call so that there's no interleaved #ifdef, to makeDaniel Stenberg
it compiler better on amigaos
2004-01-14fixed the Curl_resolv()'s return code when the looked up host was alreadyDaniel Stenberg
in the cache (Vincent Bronner)
2004-01-13added a comment about this not being the original getdate.y version, it hasDaniel Stenberg
been modified
2004-01-13Diego Casorran's fixes to allow native AmigaOS buildsDaniel Stenberg
2004-01-13Matt Veenstra updated the Mac OS X framework filesDaniel Stenberg
2004-01-13Brian R Duffy made the makefile work to build SSL-enabled curl with BorlandDaniel Stenberg
C++.
2004-01-12Peter Sylvester brought code that now allows a callback to modified the URLDaniel Stenberg
even when the multi interface is used, and then libcurl will simulate a "follow location" to that new URL. Test 509 was added to test this feature.
2004-01-11Dominick Meglio pointed out FTPS should use default port 990 according toDaniel Stenberg
IANA.
2004-01-09added one assert and a few comments describing how the auth stuff worksDaniel Stenberg
2004-01-09Dominick Meglio updated the win description since we fixed the gettimeofdayDaniel Stenberg
name issue
2004-01-07updated year in the copyright stringDaniel Stenberg
2004-01-05Dan Fandrich's zlib fixDaniel Stenberg
2004-01-05new files for the large file support number parsingDaniel Stenberg
2004-01-05David J Meyer's large file support.Daniel Stenberg
2004-01-04make our private version of gettimeofday() staticDaniel Stenberg
2004-01-04white space and copyright year changesDaniel Stenberg
2004-01-04Dominick Meglio's description how to build ares for libcurl on win32Daniel Stenberg
2003-12-19Make setopt() support CURLOPT_IPRESOLVE...Daniel Stenberg
2003-12-19djgpp fixes by Gisle VanemDaniel Stenberg
2003-12-19Gisle Vanem's minor fixesDaniel Stenberg
2003-12-18redirect from a bad url such as "www.com?moo=foo" to an absolute path didn'tDaniel Stenberg
work, as reported by John McGowan
2003-12-18David Byron's fix to make libcurl build fine with both .NET and VC6 versionDaniel Stenberg
of MSVC
2003-12-16use the curlassert() instead of custom checksDaniel Stenberg
2003-12-15added a library-wide interface for doing dns cache pruning, and no longerDaniel Stenberg
make the pruning at each name lookup, only in Curl_done().
2003-12-15if Curl_hash_add() returns NULL, we shall not free the addrinfo field as thatDaniel Stenberg
is made in the hash function in the case of failure (using the already setup 'dtor' function).
2003-12-15make sure that hash_add() has no allocated resources left in case itDaniel Stenberg
returns NULL
2003-12-15Giuseppe Attardi fixed a really tricky bugDaniel Stenberg
2003-12-11use the CORRECT file name! ;-)Daniel Stenberg
2003-12-10Use Curl_transfer() properly. Fixes the bug Gisle Vanem found!Daniel Stenberg
2003-12-10assert that we get a good index to Curl_transfer()Daniel Stenberg