mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
Outbound connection management
This commit is contained in:
parent
08676eb49d
commit
941d1e5c72
1 changed files with 20 additions and 0 deletions
|
|
@ -117,6 +117,26 @@ int slap_sasl_config(
|
|||
}
|
||||
|
||||
|
||||
int connection_client_setup(
|
||||
ber_socket_t s,
|
||||
Listener *l,
|
||||
ldap_pvt_thread_start_t *func,
|
||||
void *arg )
|
||||
{
|
||||
assert(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void connection_client_enable( ber_socket_t s )
|
||||
{
|
||||
assert(0);
|
||||
}
|
||||
|
||||
void connection_client_stop( ber_socket_t s )
|
||||
{
|
||||
assert(0);
|
||||
}
|
||||
|
||||
void connection2anonymous( Connection *c )
|
||||
{
|
||||
assert(0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue