mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Build without HAVE_TLS
This commit is contained in:
parent
4f58efc4d1
commit
9184d038ea
@ -2229,7 +2229,13 @@ static int initConnectionPB( Slapi_PBlock *pb, Connection *conn )
|
|||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
/* Returns pointer to static string */
|
/* Returns pointer to static string */
|
||||||
connAuthType = Authorization2AuthType( &conn->c_authz, conn->c_is_tls, 1 );
|
connAuthType = Authorization2AuthType( &conn->c_authz,
|
||||||
|
#ifdef HAVE_TLS
|
||||||
|
conn->c_is_tls,
|
||||||
|
#else
|
||||||
|
0,
|
||||||
|
#endif
|
||||||
|
1 );
|
||||||
if ( connAuthType != NULL ) {
|
if ( connAuthType != NULL ) {
|
||||||
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHTYPE, (void *)connAuthType);
|
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHTYPE, (void *)connAuthType);
|
||||||
if ( rc != LDAP_SUCCESS )
|
if ( rc != LDAP_SUCCESS )
|
||||||
@ -2237,7 +2243,13 @@ static int initConnectionPB( Slapi_PBlock *pb, Connection *conn )
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Returns pointer to allocated string */
|
/* Returns pointer to allocated string */
|
||||||
connAuthType = Authorization2AuthType( &conn->c_authz, conn->c_is_tls, 0 );
|
connAuthType = Authorization2AuthType( &conn->c_authz,
|
||||||
|
#ifdef HAVE_TLS
|
||||||
|
conn->c_is_tls,
|
||||||
|
#else
|
||||||
|
0,
|
||||||
|
#endif
|
||||||
|
0 );
|
||||||
if ( connAuthType != NULL ) {
|
if ( connAuthType != NULL ) {
|
||||||
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHMETHOD, (void *)connAuthType);
|
rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHMETHOD, (void *)connAuthType);
|
||||||
if ( rc != LDAP_SUCCESS )
|
if ( rc != LDAP_SUCCESS )
|
||||||
@ -2331,7 +2343,11 @@ int slapi_is_connection_ssl( Slapi_PBlock *pb, int *isSSL )
|
|||||||
Connection *conn;
|
Connection *conn;
|
||||||
|
|
||||||
slapi_pblock_get( pb, SLAPI_CONNECTION, &conn );
|
slapi_pblock_get( pb, SLAPI_CONNECTION, &conn );
|
||||||
|
#ifdef HAVE_TLS
|
||||||
*isSSL = conn->c_is_tls;
|
*isSSL = conn->c_is_tls;
|
||||||
|
#else
|
||||||
|
*isSSL = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
return LDAP_SUCCESS;
|
return LDAP_SUCCESS;
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user