Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-11 | updated coment, updated OpenSSL version. | Gunter Knauf | |
2008-11-11 | added libidn build. | Gunter Knauf | |
2008-11-11 | Related with bug #2230535 (http://curl.haxx.se/bug/view.cgi?id=2230535) | Yang Tse | |
Daniel Fandrich noticed that curl_addrinfo was also missing in the build process of other four non-configure platforms. Added now. | |||
2008-11-07 | The getifaddrs() version of Curl_if2ip() crashed when used on a Linux | Dan Fandrich | |
system with a TEQL load-balancing device configured, which doesn't have an address. Thanks to Adam Sampson for spotting this (bug #2234923). | |||
2008-11-06 | Add missing curl_addrinfo, and sort the list. | Yang Tse | |
2008-11-06 | Merged existing IPv4 and IPv6 Curl_ip2addr functions into a single one | Yang Tse | |
which now also takes a protocol address family argument. | |||
2008-11-06 | Factored out some common code into a new function output_auth_headers | Dan Fandrich | |
2008-11-05 | corrected and clarified the *_SPEED_LARGE comments | Daniel Stenberg | |
2008-11-04 | CURLINFO_FILETIME now works for file:// transfers as well | Daniel Stenberg | |
2008-11-03 | - Bug #2218480 (http://curl.haxx.se/bug/view.cgi?id=2218480) pointed out a | Daniel Stenberg | |
problem with my CURLINFO_PRIMARY_IP fix from October 7th that caused a NULL pointer read. I also took the opportunity to clean up this logic (storing of the connection's IP address) somewhat as we had it stored in two different places and ways previously and they are now unified. | |||
2008-11-03 | Added '#define HAVE_GETNAMEINFO' and qualifiers/types | Gisle Vanem | |
for it. | |||
2008-11-03 | djgpp/DOS does have getaddrinfo(). | Gisle Vanem | |
2008-11-03 | fix length of longest IPv6 address string | Yang Tse | |
2008-11-03 | I liked Daniel Johnson's simplified version bumper guide so I modified the | Daniel Stenberg | |
instruction in the comments to use that instead! Original mail: http://curl.haxx.se/mail/lib-2008-11/0019.html | |||
2008-11-02 | Marked with TODO comments a number of problems in the Kerberos code detected | Dan Fandrich | |
while investigating the issue in http://curl.haxx.se/mail/lib-2008-09/0262.html I'm hesitant to fix them because I have no way of testing the result. | |||
2008-11-01 | Daniel Johnson reported and fixed ipv4 name resolves when libcurl is built | Daniel Stenberg | |
with ipv6-enabled c-ares | |||
2008-11-01 | bump VERSIONINFO for the upcoming release | Daniel Stenberg | |
2008-11-01 | Adjust WIN32 freeaddrinfo, getaddrinfo and getnameinfo availability | Yang Tse | |
2008-11-01 | WIN32 availability of freeaddrinfo, getaddrinfo and getnameinfo functions is ↵ | Yang Tse | |
quite convoluted, compiler dependant and in some cases even build target dependat. | |||
2008-11-01 | init_resolve_thread() needs 'hints' on the native form. | Gisle Vanem | |
2008-11-01 | Added '#define HAVE_GETADDRINFO'. | Gisle Vanem | |
2008-11-01 | Added curl_addrinfo.obj. Rearranged alphabetically. | Gisle Vanem | |
2008-11-01 | Fix typos. | Gisle Vanem | |
2008-10-30 | NetWare LIBC target has getaddrinfo() and freeaddrinfo() | Yang Tse | |
2008-10-30 | Move curl_dofreeaddrinfo() and curl_dofreeaddrinfo() | Yang Tse | |
implementation from lib/hostip6.c to lib/curl_addrinfo.c and prototypes from lib/hostip.h to lib/curl_addrinfo.h | |||
2008-10-30 | remove bogus whitespace | Yang Tse | |
2008-10-30 | These two variables are now Curl_addrinfo pointers | Yang Tse | |
2008-10-30 | remove bogus comment | Yang Tse | |
2008-10-30 | Use our Curl_addrinfo definition even when an addrinfo struct is available. | Yang Tse | |
Use a wrapper function to call system's getaddrinfo(). | |||
2008-10-29 | Fixed a bug that caused a few bytes of garbage to be sent after a | Dan Fandrich | |
curl_easy_pause() during a chunky upload. Reported by Steve Roskowski. | |||
2008-10-28 | added an extra set of braces to unconfuse emacs and then I re-indented a | Daniel Stenberg | |
section of the code that was odd-looking previously | |||
2008-10-27 | add null-pointer check | Yang Tse | |
2008-10-25 | add missing header inclusions | Yang Tse | |
2008-10-25 | Added experimental support for zlib and OpenSSL on Symbian OS. | Dan Fandrich | |
2008-10-25 | add missing header inclusions | Yang Tse | |
2008-10-24 | Stop using in6addr_any because it's not available everywhere (e.g. Symbian) | Dan Fandrich | |
and isn't strictly needed here. | |||
2008-10-24 | fix compiler warning | Yang Tse | |
2008-10-24 | fix compiler warning | Yang Tse | |
2008-10-23 | Added rawstr.c to the non-configure libcurl makefiles | Dan Fandrich | |
2008-10-23 | moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_ | Daniel Stenberg | |
inclusion by the curl tool without colliding with the curl_strequal functions. | |||
2008-10-23 | added include to make the krb4 code compile again | Daniel Stenberg | |
2008-10-23 | Really old gcc doesn't like parenthesis around the names of functions that | Dan Fandrich | |
don't have prototypes. They didn't serve any useful purpose here, anyway. | |||
2008-10-23 | Created Curl_raw_nequal() which does a C-locale string case comparison. | Dan Fandrich | |
Changed checkprefix() to use it and those instances of strnequal() that compare host names or other protocol strings that are defined to be independent of case in the C locale. This should fix a few more Turkish locale problems. | |||
2008-10-22 | Fixed a compiler warning with --disable-proxy | Dan Fandrich | |
2008-10-22 | Changed some arrays of char* to arrays of char[] to reduce data size and | Dan Fandrich | |
run-time relocations. | |||
2008-10-21 | Compile away some more code in the CURL_DISABLE_PROXY case. | Dan Fandrich | |
2008-10-21 | Fixed some problems with SFTP range support to fix test cases 634 through 637. | Dan Fandrich | |
2008-10-20 | remove debug-code which zero-filled some structures before free()ing them | Yang Tse | |
2008-10-20 | A few prototypes shouldn't be defined if SSL is disabled. | Dan Fandrich | |
2008-10-20 | *** empty log message *** | Yang Tse | |