1999-03-05 11:38:12 +08:00
|
|
|
/* $Id: external.h,v 1.5 1999/02/18 01:18:39 bcollins Exp $ */
|
1999-02-17 08:24:40 +08:00
|
|
|
|
1999-02-15 03:20:14 +08:00
|
|
|
#ifndef _TCL_EXTERNAL_H
|
|
|
|
#define _TCL_EXTERNAL_H
|
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_initialize LDAP_P ((BackendInfo * bi));
|
|
|
|
extern int tcl_back_open LDAP_P ((BackendInfo * bi));
|
|
|
|
extern int tcl_back_close LDAP_P ((BackendInfo * bi));
|
|
|
|
extern int tcl_back_destroy LDAP_P ((BackendInfo * bi));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_db_init LDAP_P ((BackendDB * bd));
|
|
|
|
extern int tcl_back_db_open LDAP_P ((BackendDB * bd));
|
|
|
|
extern int tcl_back_db_close LDAP_P ((BackendDB * bd));
|
|
|
|
extern int tcl_back_db_destroy LDAP_P ((BackendDB * bd));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_db_config LDAP_P ((BackendDB * bd,
|
|
|
|
char *fname, int lineno, int argc, char **argv));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_bind LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op,
|
|
|
|
char *dn, int method, struct berval * cred, char **edn));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_unbind LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_search LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op,
|
|
|
|
char *base, int scope, int deref, int sizelimit, int timelimit,
|
|
|
|
Filter * filter, char *filterstr, char **attrs, int attrsonly));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_compare LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op,
|
|
|
|
char *dn, Ava * ava));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_modify LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op,
|
|
|
|
char *dn, LDAPModList * ml));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_modrdn LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op,
|
1999-03-05 11:38:12 +08:00
|
|
|
char *dn, char *newrdn, int deleteoldrdn,
|
|
|
|
char *newSuperior));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_add LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op, Entry * e));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_delete LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op, char *dn));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
extern int tcl_back_abandon LDAP_P ((BackendDB * bd,
|
|
|
|
Connection * conn, Operation * op, int msgid));
|
1999-02-15 03:20:14 +08:00
|
|
|
|
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _TCL_EXTERNAL_H */
|