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