]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/config.c
Filled in Cyrus SASL authz/storage callbacks for all backends
[openldap] / servers / slapd / back-ldap / config.c
1 /* config.c - ldap backend configuration file routine */
2 /* $OpenLDAP$ */
3
4 /*
5  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
6  * 
7  * Permission is granted to anyone to use this software for any purpose
8  * on any computer system, and to alter it and redistribute it, subject
9  * to the following restrictions:
10  * 
11  * 1. The author is not responsible for the consequences of use of this
12  *    software, no matter how awful, even if they arise from flaws in it.
13  * 
14  * 2. The origin of this software must not be misrepresented, either by
15  *    explicit claim or by omission.  Since few users ever read sources,
16  *    credits should appear in the documentation.
17  * 
18  * 3. Altered versions must be plainly marked as such, and must not be
19  *    misrepresented as being the original software.  Since few users
20  *    ever read sources, credits should appear in the documentation.
21  * 
22  * 4. This notice may not be removed or altered.
23  */
24
25 #include "portable.h"
26
27 #include <stdio.h>
28
29 #include <ac/string.h>
30 #include <ac/socket.h>
31
32 #include "slap.h"
33 #include "back-ldap.h"
34
35 int
36 ldap_back_db_config(
37     BackendDB   *be,
38     const char  *fname,
39     int         lineno,
40     int         argc,
41     char        **argv
42 )
43 {
44         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
45         char *port;
46
47         if ( li == NULL ) {
48                 fprintf( stderr, "%s: line %d: ldap backend info is null!\n",
49                     fname, lineno );
50                 return( 1 );
51         }
52
53         /* server address to query */
54         if ( strcasecmp( argv[0], "server" ) == 0 ) {
55                 if (argc != 2) {
56                         fprintf( stderr,
57         "%s: line %d: missing address in \"server <address>\" line\n",
58                             fname, lineno );
59                         return( 1 );
60                 }
61                 port=strchr(argv[1],':');
62                 if (port) {
63                         *port++ = '\0';
64                         li->port = atoi(port);
65                 }
66                 li->host = ch_strdup(argv[1]);
67         /* anything else */
68         } else {
69                 fprintf( stderr,
70 "%s: line %d: unknown directive \"%s\" in ldap database definition (ignored)\n",
71                     fname, lineno, argv[0] );
72         }
73         return 0;
74 }