/* Copyright (c) 2016-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "llist.h"
#include "ldap-private.h"
#include "ldap-connection-pool.h"
struct ldap_connection_pool {
unsigned int conn_count;
unsigned int max_connections;
};
struct ldap_connection_list *list)
{
pool->conn_count--;
}
static void
unsigned int max_count)
{
}
}
struct ldap_connection_pool *
{
return pool;
}
{
}
struct ldap_client *client,
const struct ldap_client_settings *set,
struct ldap_connection_list **list_r,
const char **error_r)
{
return 0;
}
}
return -1;
pool->conn_count++;
return 0;
}
struct ldap_connection_list **_list)
{
}
{
return TRUE;
}
return FALSE;
}