mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Add sasl "mech" argument to backend bind routines.
This commit is contained in:
parent
1ee85df297
commit
a7dfc2aada
@ -217,6 +217,7 @@ bdb2_back_bind(
|
||||
Operation *op,
|
||||
char *dn,
|
||||
int method,
|
||||
char *mech,
|
||||
struct berval *cred,
|
||||
char** edn
|
||||
)
|
||||
|
@ -21,7 +21,8 @@ extern int bdb2_back_db_config LDAP_P(( BackendDB *bd,
|
||||
|
||||
extern int bdb2_back_bind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
char *dn, int method, struct berval *cred, char** edn ));
|
||||
char *dn, int method, char* mech,
|
||||
struct berval *cred, char** edn ));
|
||||
|
||||
extern int bdb2_back_unbind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op ));
|
||||
|
@ -38,6 +38,7 @@ ldap_back_bind(
|
||||
Operation *op,
|
||||
char *dn,
|
||||
int method,
|
||||
char *mech,
|
||||
struct berval *cred,
|
||||
char **edn
|
||||
)
|
||||
|
@ -16,7 +16,8 @@ extern int ldap_back_db_config LDAP_P(( BackendDB *bd,
|
||||
|
||||
extern int ldap_back_bind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
char *dn, int method, struct berval *cred, char** edn ));
|
||||
char *dn, int method, char* mech,
|
||||
struct berval *cred, char** edn ));
|
||||
|
||||
extern int ldap_back_unbind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op ));
|
||||
|
@ -18,7 +18,8 @@ extern int ldbm_back_db_config LDAP_P(( BackendDB *bd,
|
||||
|
||||
extern int ldbm_back_bind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
char *dn, int method, char* mech, struct berval *cred, char** edn ));
|
||||
char *dn, int method, char* mech,
|
||||
struct berval *cred, char** edn ));
|
||||
|
||||
extern int ldbm_back_unbind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op ));
|
||||
|
@ -34,6 +34,7 @@ perl_back_bind(
|
||||
Operation *op,
|
||||
char *dn,
|
||||
int method,
|
||||
char *mech,
|
||||
struct berval *cred,
|
||||
char** edn
|
||||
)
|
||||
|
@ -16,7 +16,8 @@ extern int perl_back_db_config LDAP_P(( BackendDB *bd,
|
||||
|
||||
extern int perl_back_bind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
char *dn, int method, struct berval *cred, char** edn ));
|
||||
char *dn, int method, char* mech,
|
||||
struct berval *cred, char** edn ));
|
||||
|
||||
extern int perl_back_unbind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op ));
|
||||
|
@ -17,6 +17,7 @@ shell_back_bind(
|
||||
Operation *op,
|
||||
char *dn,
|
||||
int method,
|
||||
char *mech,
|
||||
struct berval *cred,
|
||||
char **edn
|
||||
)
|
||||
|
@ -16,7 +16,8 @@ extern int shell_back_db_config LDAP_P(( BackendDB *bd,
|
||||
|
||||
extern int shell_back_bind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op,
|
||||
char *dn, int method, struct berval *cred, char** edn ));
|
||||
char *dn, int method, char* mech,
|
||||
struct berval *cred, char** edn ));
|
||||
|
||||
extern int shell_back_unbind LDAP_P(( BackendDB *bd,
|
||||
Connection *conn, Operation *op ));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: external.h,v 1.5 1999/02/18 01:18:39 bcollins Exp $ */
|
||||
/* $Id: external.h,v 1.6 1999/03/05 02:42:17 gomez Exp $ */
|
||||
|
||||
#ifndef _TCL_EXTERNAL_H
|
||||
#define _TCL_EXTERNAL_H
|
||||
@ -20,7 +20,8 @@ extern int tcl_back_db_config LDAP_P ((BackendDB * bd,
|
||||
|
||||
extern int tcl_back_bind LDAP_P ((BackendDB * bd,
|
||||
Connection * conn, Operation * op,
|
||||
char *dn, int method, struct berval * cred, char **edn));
|
||||
char *dn, int method, char *mech,
|
||||
struct berval * cred, char **edn));
|
||||
|
||||
extern int tcl_back_unbind LDAP_P ((BackendDB * bd,
|
||||
Connection * conn, Operation * op));
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* bind.c - tcl bind routines
|
||||
*
|
||||
* $Id: tcl_bind.c,v 1.4 1999/02/19 06:55:20 bcollins Exp $
|
||||
* $Id: tcl_bind.c,v 1.5 1999/02/28 04:55:48 bcollins Exp $
|
||||
*
|
||||
* Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
|
||||
*
|
||||
@ -24,6 +24,7 @@ tcl_back_bind (
|
||||
Operation * op,
|
||||
char *dn,
|
||||
int method,
|
||||
char *mech,
|
||||
struct berval *cred,
|
||||
char **edn
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user