]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldap/proto-ldap.h
address ITS#4332; might remove dynamicObject counting
[openldap] / servers / slapd / back-ldap / proto-ldap.h
index e5f3321b66a9c653bd9ad45007bb6d4245c16b49..e668a717d536a3f3dc61f6669e25716c447241f1 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2003-2004 The OpenLDAP Foundation.
+ * Copyright 2003-2006 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,6 @@ extern BI_destroy             ldap_back_destroy;
 extern BI_db_init              ldap_back_db_init;
 extern BI_db_open              ldap_back_db_open;
 extern BI_db_destroy           ldap_back_db_destroy;
-extern BI_db_config            ldap_back_db_config;
 
 extern BI_op_bind              ldap_back_bind;
 extern BI_op_search            ldap_back_search;
@@ -48,6 +47,41 @@ extern BI_connection_destroy ldap_back_conn_destroy;
 
 extern BI_entry_get_rw         ldap_back_entry_get;
 
+int ldap_back_freeconn( Operation *op, ldapconn_t *lc, int dolock );
+ldapconn_t *ldap_back_getconn( Operation *op, SlapReply *rs, ldap_back_send_t sendok );
+void ldap_back_release_conn_lock( Operation *op, SlapReply *rs, ldapconn_t *lc, int dolock );
+#define ldap_back_release_conn(op, rs, lc) ldap_back_release_conn_lock((op), (rs), (lc), 1)
+int ldap_back_dobind( ldapconn_t *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
+int ldap_back_retry( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
+int ldap_back_map_result( SlapReply *rs );
+int ldap_back_op_result( ldapconn_t *lc, Operation *op, SlapReply *rs,
+       ber_int_t msgid, time_t timeout, ldap_back_send_t sendok );
+
+int ldap_back_init_cf( BackendInfo *bi );
+
+extern int ldap_back_conn_cmp( const void *c1, const void *c2);
+extern int ldap_back_conn_dup( void *c1, void *c2 );
+extern void ldap_back_conn_free( void *c );
+
+extern int
+ldap_back_proxy_authz_ctrl(
+               ldapconn_t      *lc,
+               Operation       *op,
+               SlapReply       *rs,
+               LDAPControl     ***pctrls );
+
+extern int
+ldap_back_proxy_authz_ctrl_free(
+               Operation       *op,
+               LDAPControl     ***pctrls );
+
+extern int chain_initialize( void );
+#ifdef LDAP_DEVEL
+extern int distproc_initialize( void );
+#endif
+
+extern LDAP_REBIND_PROC                *ldap_back_rebind_f;
+
 LDAP_END_DECL
 
 #endif /* PROTO_LDAP_H */