]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/init.c
5724118e5aa6d28290e2fd48532049bd7a491bcb
[openldap] / servers / slapd / back-shell / init.c
1 /* init.c - initialize shell backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26 /* ACKNOWLEDGEMENTS:
27  * This work was originally developed by the University of Michigan
28  * (as part of U-MICH LDAP).
29  */
30
31 #include "portable.h"
32
33 #include <stdio.h>
34
35 #include <ac/socket.h>
36
37 #include "slap.h"
38
39 #include "shell.h"
40
41 int
42 shell_back_initialize(
43     BackendInfo *bi
44 )
45 {
46         bi->bi_open = 0;
47         bi->bi_config = 0;
48         bi->bi_close = 0;
49         bi->bi_destroy = 0;
50
51         bi->bi_db_init = shell_back_db_init;
52         bi->bi_db_config = shell_back_db_config;
53         bi->bi_db_open = 0;
54         bi->bi_db_close = 0;
55         bi->bi_db_destroy = shell_back_db_destroy;
56
57         bi->bi_op_bind = shell_back_bind;
58         bi->bi_op_unbind = shell_back_unbind;
59         bi->bi_op_search = shell_back_search;
60         bi->bi_op_compare = shell_back_compare;
61         bi->bi_op_modify = shell_back_modify;
62         bi->bi_op_modrdn = shell_back_modrdn;
63         bi->bi_op_add = shell_back_add;
64         bi->bi_op_delete = shell_back_delete;
65         bi->bi_op_abandon = 0;
66
67         bi->bi_extended = 0;
68
69         bi->bi_chk_referrals = 0;
70
71         bi->bi_connection_init = 0;
72         bi->bi_connection_destroy = 0;
73
74         return 0;
75 }
76
77 int
78 shell_back_db_init(
79     Backend     *be
80 )
81 {
82         struct shellinfo        *si;
83
84         si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
85
86         be->be_private = si;
87
88         return si == NULL;
89 }
90
91 int
92 shell_back_db_destroy(
93     Backend     *be
94 )
95 {
96         free( be->be_private );
97         return 0;
98 }
99
100 #if SLAPD_SHELL == SLAPD_MOD_DYNAMIC
101
102 /* conditionally define the init_module() function */
103 SLAP_BACKEND_INIT_MODULE( shell )
104
105 #endif /* SLAPD_SHELL == SLAPD_MOD_DYNAMIC */
106