mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
bb7e14d201
Includes all the changes necessary to fix back-asyncmeta issues discovered during on-site testing since the start of 2016. These include: Issues with stability - crashes and assetion failures Incorrect behavior during unstable network conditions, such as inability to reset connections or process responses, or "hanging" to wait for a response that would never be received. Memory leaks and memory management fixes - major redesign of the way back-asyncmeta works with memory contexts. Rewrite was replaced with suffix-massage in configuration, and the network-timeout value was changed to milliseconds. Incorrect behavior when SASL is used to bind to a target. Many problems caused by race conditions Fixes for compiler warnings, and tests. Cleanup of unused code.
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 2016-2019 The OpenLDAP Foundation.
|
|
* Portions Copyright 2016 Symas Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
* Public License.
|
|
*
|
|
* A copy of this license is available in the file LICENSE in the
|
|
* top-level directory of the distribution or, alternatively, at
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
* This work was developed by Symas Corporation
|
|
* based on back-meta module for inclusion in OpenLDAP Software.
|
|
* This work was sponsored by Ericsson. */
|
|
|
|
#ifndef PROTO_ASYNCMETA_H
|
|
#define PROTO_ASYNCMETA_H
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
extern BI_init asyncmeta_back_initialize;
|
|
|
|
extern BI_open asyncmeta_back_open;
|
|
extern BI_close asyncmeta_back_close;
|
|
extern BI_destroy asyncmeta_back_destroy;
|
|
|
|
extern BI_db_init asyncmeta_back_db_init;
|
|
extern BI_db_open asyncmeta_back_db_open;
|
|
extern BI_db_destroy asyncmeta_back_db_destroy;
|
|
extern BI_db_close asyncmeta_back_db_close;
|
|
extern BI_db_config asyncmeta_back_db_config;
|
|
|
|
extern BI_op_bind asyncmeta_back_bind;
|
|
extern BI_op_search asyncmeta_back_search;
|
|
extern BI_op_compare asyncmeta_back_compare;
|
|
extern BI_op_modify asyncmeta_back_modify;
|
|
extern BI_op_modrdn asyncmeta_back_modrdn;
|
|
extern BI_op_add asyncmeta_back_add;
|
|
extern BI_op_delete asyncmeta_back_delete;
|
|
|
|
extern BI_connection_destroy asyncmeta_back_conn_destroy;
|
|
|
|
int asyncmeta_back_init_cf( BackendInfo *bi );
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* PROTO_ASYNCMETA_H */
|