diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2008-06-14 13:31:30 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2008-06-14 13:31:30 +0200 |
commit | 8c589385f918cf7ef4e0d9d9982bba3865dbfee2 (patch) | |
tree | ed16564f974e0d3594af335747919cf95ce32d79 /nslcd/cfg.h | |
parent | bef987ec06c19ddb3f87c237e60b722941af568b (diff) |
implement SASL authentication based on a patch by Dan White <dwhite@olp.net>
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@762 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/cfg.h')
-rw-r--r-- | nslcd/cfg.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/nslcd/cfg.h b/nslcd/cfg.h index 981af28..a6edb47 100644 --- a/nslcd/cfg.h +++ b/nslcd/cfg.h @@ -87,10 +87,16 @@ struct ldap_config char *ldc_binddn; /* bind cred */ char *ldc_bindpw; - /* sasl auth id */ - char *ldc_saslid; + /* sasl authentication id */ + char *ldc_sasl_authcid; + /* sasl authorization id */ + char *ldc_sasl_authzid; /* sasl security */ char *ldc_sasl_secprops; + /* sasl mech */ + char *ldc_sasl_mech; + /* sasl realm */ + char *ldc_sasl_realm; /* do we use sasl when binding? */ int ldc_usesasl; /* base DN, eg. dc=gnu,dc=org */ |