summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_common.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2011-02-11 13:10:27 -0500
committerStephen Gallagher <sgallagh@redhat.com>2011-02-16 09:38:22 -0500
commitcc2b267e14db7073e7247b52cc9d82dfdf280076 (patch)
treecfe72d47f838ccfee0b7dba2dd15d506ec2ec1f4 /src/providers/ldap/ldap_common.c
parenta1294c95a4f9f37bbe9a8635defa3a45e59213ab (diff)
downloadsssd-cc2b267e14db7073e7247b52cc9d82dfdf280076.tar.gz
sssd-cc2b267e14db7073e7247b52cc9d82dfdf280076.tar.xz
sssd-cc2b267e14db7073e7247b52cc9d82dfdf280076.zip
Do not attempt to use START_TLS on SSL connections
Not all LDAP servers are capable of handling dual-encryption with both TLS and SSL. https://fedorahosted.org/sssd/ticket/795
Diffstat (limited to 'src/providers/ldap/ldap_common.c')
-rw-r--r--src/providers/ldap/ldap_common.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c
index f2ea16aec..ce6d41d58 100644
--- a/src/providers/ldap/ldap_common.c
+++ b/src/providers/ldap/ldap_common.c
@@ -993,3 +993,12 @@ done:
talloc_free(tmp_ctx);
return ret;
}
+
+bool sdap_is_secure_uri(const char *uri)
+{
+ /* LDAPS URI's are secure channels */
+ if (strncasecmp(uri, LDAP_SSL_URI, strlen(LDAP_SSL_URI)) == 0) {
+ return true;
+ }
+ return false;
+}