- Dec 17, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
struct, and instead use the already stored string in the handler struct.
-
- Nov 18, 2009
-
-
Yang Tse authored
-
- Nov 02, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
CURLINFO_SIZE_DOWNLOAD (the -w variable size_download) didn't work when getting data from ldap!
-
- Oct 13, 2009
-
-
Yang Tse authored
-
- Apr 21, 2009
- Mar 08, 2009
-
-
Daniel Stenberg authored
-
- Dec 19, 2008
-
-
Daniel Stenberg authored
now has an improved ability to do right when the multi interface (both "regular" and multi_socket) is used for SCP and SFTP transfers. This should result in (much) less busy-loop situations and thus less CPU usage with no speed loss.
-
- Oct 23, 2008
-
-
Daniel Stenberg authored
inclusion by the curl tool without colliding with the curl_strequal functions.
-
- Oct 16, 2008
-
-
Daniel Stenberg authored
used in strequal.c so now all test cases run fine for me again.
-
- Oct 15, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl uses strcasecmp() in multiple places where it causes failures when the Turkish locale is used. This is because 'i' and 'I' isn't the same letter so strcasecmp() on those letters are different in Turkish than in English (or just about all other languages). I thus introduced a totally new internal function in libcurl (called Curl_ascii_equal) for doing case insentive comparisons for english-(ascii?) style strings that thus will make "file" and "FILE" match even if the Turkish locale is selected.
-
- Aug 17, 2008
-
-
Yang Tse authored
-
- Nov 24, 2007
-
-
Daniel Stenberg authored
-
- Nov 05, 2007
-
-
Daniel Stenberg authored
consistency
-
- Oct 17, 2007
-
-
Yang Tse authored
when assigning a NULL pointer to a function pointer var.
-
- Oct 12, 2007
-
-
Patrick Monnerat authored
in the connectdata structure by a single handler table ptr.
-
- Oct 09, 2007
-
-
Yang Tse authored
-
Guenter Knauf authored
added check for MSVC6 standard PSDK and bail out since insufficient for LDAP support with current code.
-
- Oct 02, 2007
-
-
Yang Tse authored
-
- Sep 15, 2007
-
-
Guenter Knauf authored
-
- Aug 25, 2007
-
-
Guenter Knauf authored
-
- Aug 23, 2007
-
-
Guenter Knauf authored
default now to verify cert unless data->set.ssl.verifypeer is 0.
-
- Aug 22, 2007
-
-
Gisle Vanem authored
-
Guenter Knauf authored
-
- Aug 20, 2007
-
-
Guenter Knauf authored
removed now obsolete defines since we include now ldap headers which define these.
-
Guenter Knauf authored
fixed ldaps section for OpenLDAP. Still not working, but at least it compiles now, and should serve as base to get it finally working. Also seems that the ifdefs can be arranged some better because the Solaris and Netscape/iPlanet/Mozilla LDAP SDKs seem to be closer to the Novell section than the OpenLDAP one.
-
- Aug 16, 2007
-
-
Guenter Knauf authored
-
Guenter Knauf authored
added basic ldaps support; for now its ifdef'd with HAVE_LDAP_SSL unless we know its fully working, and available with all LDAP SDKs. Win32 requires to have the trusted CA in local keystore - I've not found yet a way to disable the cert check.
-
- Aug 15, 2007
-
-
Guenter Knauf authored
-
- Aug 13, 2007
-
-
Dan Fandrich authored
-
Patrick Monnerat authored
-
- Aug 12, 2007
-
-
Daniel Stenberg authored
indented some of the code to curl-style
-
- Aug 11, 2007
-
-
Daniel Stenberg authored
the configure script checks for openldap and friends and we link with those libs just like we link all other third party libraries, and we no longer dlopen() those libraries. Our private header file lib/ldap.h was renamed to lib/curl_ldap.h due to this. I set a tag in CVS (curl-7_17_0-preldapfix) just before this commit, just in case.
-
- Mar 12, 2007
-
-
Yang Tse authored
libldap when available in liblber.
-
- Feb 26, 2007
-
-
Gisle Vanem authored
since they're already included through "setup.h".
-
- Jan 03, 2007
-
-
Daniel Stenberg authored
non-ASCII platforms.
-
- Oct 29, 2006
-
-
Yang Tse authored
compiler warning fix since it was Ok and actually avoids the targeted compiler warning.
-
- Oct 27, 2006
-
-
Yang Tse authored
Assigning the const value zero to a pointer to function results in a null pointer value assignment to the function pointer. Assignment of any nonzero value is what should result in a implementation compiler dependent result. Since what we want to do here is the first case, this should not trigger compiler warnings related with conversions from 'pointer to data' to 'pointer to function'. Our autobuild test suite will judge.
-