]> git.sur5r.net Git - openldap/blob - servers/slapd/back-dnssrv/init.c
Happy New Year!
[openldap] / servers / slapd / back-dnssrv / init.c
1 /* init.c - initialize ldap backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2005 The OpenLDAP Foundation.
6  * Portions Copyright 2000-2003 Kurt D. Zeilenga.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was originally developed by Kurt D. Zeilenga for inclusion
19  * in OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #include <stdio.h>
25
26 #include <ac/socket.h>
27
28 #include "slap.h"
29 #include "proto-dnssrv.h"
30
31 int
32 dnssrv_back_initialize(
33     BackendInfo *bi )
34 {
35         static char *controls[] = {
36                 LDAP_CONTROL_MANAGEDSAIT,
37                 LDAP_CONTROL_VALUESRETURNFILTER,
38                 NULL
39         };
40
41         bi->bi_controls = controls;
42
43         bi->bi_open = 0;
44         bi->bi_config = 0;
45         bi->bi_close = 0;
46         bi->bi_destroy = 0;
47
48         bi->bi_db_init = 0;
49         bi->bi_db_destroy = 0;
50         bi->bi_db_config = dnssrv_back_db_config;
51         bi->bi_db_open = 0;
52         bi->bi_db_close = 0;
53
54         bi->bi_chk_referrals = dnssrv_back_referrals;
55
56         bi->bi_op_bind = dnssrv_back_bind;
57         bi->bi_op_search = dnssrv_back_search;
58         bi->bi_op_compare = 0 /* dnssrv_back_compare */;
59         bi->bi_op_modify = 0;
60         bi->bi_op_modrdn = 0;
61         bi->bi_op_add = 0;
62         bi->bi_op_delete = 0;
63         bi->bi_op_abandon = 0;
64         bi->bi_op_unbind = 0;
65
66         bi->bi_extended = 0;
67
68         bi->bi_connection_init = 0;
69         bi->bi_connection_destroy = 0;
70
71         return 0;
72 }
73
74 int
75 dnssrv_back_db_init(
76     Backend     *be )
77 {
78         return 0;
79 }
80
81 int
82 dnssrv_back_db_destroy(
83     Backend     *be )
84 {
85         return 0;
86 }
87
88 #if SLAPD_DNSSRV == SLAPD_MOD_DYNAMIC
89
90 /* conditionally define the init_module() function */
91 SLAP_BACKEND_INIT_MODULE( dnssrv )
92
93 #endif /* SLAPD_DNSSRV == SLAPD_MOD_DYNAMIC */
94