mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 04:29:35 -05:00
Remove dead code
This commit is contained in:
parent
c332df50de
commit
c249b16679
3 changed files with 15 additions and 45 deletions
|
|
@ -25,8 +25,7 @@ dnssrv_back_bind(
|
|||
const char *ndn,
|
||||
int method,
|
||||
struct berval *cred,
|
||||
char **edn
|
||||
)
|
||||
char **edn )
|
||||
{
|
||||
Debug( LDAP_DEBUG_TRACE, "DNSSRV: bind %s (%d)\n",
|
||||
dn == NULL ? "" : dn,
|
||||
|
|
|
|||
|
|
@ -21,8 +21,7 @@ dnssrv_back_db_config(
|
|||
const char *fname,
|
||||
int lineno,
|
||||
int argc,
|
||||
char **argv
|
||||
)
|
||||
char **argv )
|
||||
{
|
||||
struct ldapinfo *li = (struct ldapinfo *) be->be_private;
|
||||
char *port;
|
||||
|
|
@ -36,7 +35,8 @@ dnssrv_back_db_config(
|
|||
/* no configuration options (yet) */
|
||||
{
|
||||
fprintf( stderr,
|
||||
"%s: line %d: unknown directive \"%s\" in DNSSRV database definition (ignored)\n",
|
||||
"%s: line %d: unknown directive \"%s\""
|
||||
" in DNSSRV database definition (ignored)\n",
|
||||
fname, lineno, argv[0] );
|
||||
}
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -16,14 +16,15 @@
|
|||
|
||||
#ifdef SLAPD_DNSSRV_DYNAMIC
|
||||
|
||||
int back_dnssrv_LTX_init_module(int argc, char *argv[]) {
|
||||
int back_dnssrv_LTX_init_module(int argc, char *argv[])
|
||||
{
|
||||
BackendInfo bi;
|
||||
|
||||
memset( &bi, '\0', sizeof(bi) );
|
||||
bi.bi_type = "dnssrv";
|
||||
bi.bi_init = dnssrv_back_initialize;
|
||||
|
||||
backend_add(&bi);
|
||||
backend_add( &bi );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -31,8 +32,7 @@ int back_dnssrv_LTX_init_module(int argc, char *argv[]) {
|
|||
|
||||
int
|
||||
dnssrv_back_initialize(
|
||||
BackendInfo *bi
|
||||
)
|
||||
BackendInfo *bi )
|
||||
{
|
||||
static char *controls[] = {
|
||||
LDAP_CONTROL_MANAGEDSAIT,
|
||||
|
|
@ -46,14 +46,15 @@ dnssrv_back_initialize(
|
|||
bi->bi_close = 0;
|
||||
bi->bi_destroy = 0;
|
||||
|
||||
bi->bi_db_init = dnssrv_back_db_init;
|
||||
bi->bi_db_init = 0;
|
||||
bi->bi_db_destroy = 0;
|
||||
bi->bi_db_config = dnssrv_back_db_config;
|
||||
bi->bi_db_open = 0;
|
||||
bi->bi_db_close = 0;
|
||||
bi->bi_db_destroy = dnssrv_back_db_destroy;
|
||||
|
||||
bi->bi_chk_referrals = dnssrv_back_referrals;
|
||||
|
||||
bi->bi_op_bind = dnssrv_back_bind;
|
||||
bi->bi_op_unbind = 0;
|
||||
bi->bi_op_search = dnssrv_back_search;
|
||||
bi->bi_op_compare = 0 /* dnssrv_back_compare */;
|
||||
bi->bi_op_modify = 0;
|
||||
|
|
@ -61,11 +62,10 @@ dnssrv_back_initialize(
|
|||
bi->bi_op_add = 0;
|
||||
bi->bi_op_delete = 0;
|
||||
bi->bi_op_abandon = 0;
|
||||
bi->bi_op_unbind = 0;
|
||||
|
||||
bi->bi_extended = 0;
|
||||
|
||||
bi->bi_acl_group = 0;
|
||||
bi->bi_chk_referrals = dnssrv_back_referrals;
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
bi->bi_sasl_authorize = 0;
|
||||
|
|
@ -81,43 +81,14 @@ dnssrv_back_initialize(
|
|||
|
||||
int
|
||||
dnssrv_back_db_init(
|
||||
Backend *be
|
||||
)
|
||||
Backend *be )
|
||||
{
|
||||
#if 0
|
||||
struct ldapinfo *li;
|
||||
|
||||
li = (struct ldapinfo *) ch_calloc( 1, sizeof(struct ldapinfo) );
|
||||
ldap_pvt_thread_mutex_init( &li->conn_mutex );
|
||||
|
||||
be->be_private = li;
|
||||
|
||||
return li == NULL;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
int
|
||||
dnssrv_back_db_destroy(
|
||||
Backend *be
|
||||
)
|
||||
Backend *be )
|
||||
{
|
||||
#if 0
|
||||
struct ldapinfo *li;
|
||||
|
||||
if (be->be_private) {
|
||||
li = (struct ldapinfo *)be->be_private;
|
||||
if (li->host) {
|
||||
free(li->host);
|
||||
li->host = NULL;
|
||||
}
|
||||
ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
|
||||
}
|
||||
|
||||
free( be->be_private );
|
||||
return 0;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue