mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
44 lines
847 B
C
44 lines
847 B
C
/* config.c - DNS SRV backend configuration file routine */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-dnssrv.h"
|
|
|
|
int
|
|
dnssrv_back_db_config(
|
|
BackendDB *be,
|
|
const char *fname,
|
|
int lineno,
|
|
int argc,
|
|
char **argv
|
|
)
|
|
{
|
|
struct ldapinfo *li = (struct ldapinfo *) be->be_private;
|
|
char *port;
|
|
|
|
if ( li == NULL ) {
|
|
fprintf( stderr, "%s: line %d: DNSSRV backend info is null!\n",
|
|
fname, lineno );
|
|
return( 1 );
|
|
}
|
|
|
|
/* no configuration options (yet) */
|
|
{
|
|
fprintf( stderr,
|
|
"%s: line %d: unknown directive \"%s\" in DNSSRV database definition (ignored)\n",
|
|
fname, lineno, argv[0] );
|
|
}
|
|
return 0;
|
|
}
|