diff options
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 7b9e51068b..7c64082ab4 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -527,6 +527,18 @@ got_connection: } /** + * Connect to the LDAP server using given credentials + * @param ads Pointer to an existing ADS_STRUCT + * @return status of connection + **/ +ADS_STATUS ads_connect_user_creds(ADS_STRUCT *ads) +{ + ads->auth.flags |= ADS_AUTH_USER_CREDS; + + return ads_connect(ads); +} + +/** * Disconnect the LDAP server * @param ads Pointer to an existing ADS_STRUCT **/ |