blob: 02b7bc82b1a19e58ef228f424efb8028a06e63a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* init.c - initialize sock backend */
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 2007-2022 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/* ACKNOWLEDGEMENTS:
* This work was initially developed by Brian Candler for inclusion
* in OpenLDAP Software.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/socket.h>
#include "slap.h"
#include "back-sock.h"
int
sock_back_initialize(
BackendInfo *bi
)
{
bi->bi_open = 0;
bi->bi_config = 0;
bi->bi_close = 0;
bi->bi_destroy = 0;
bi->bi_db_init = sock_back_db_init;
bi->bi_db_config = 0;
bi->bi_db_open = 0;
bi->bi_db_close = 0;
bi->bi_db_destroy = sock_back_db_destroy;
bi->bi_op_bind = sock_back_bind;
bi->bi_op_unbind = sock_back_unbind;
bi->bi_op_search = sock_back_search;
bi->bi_op_compare = sock_back_compare;
bi->bi_op_modify = sock_back_modify;
bi->bi_op_modrdn = sock_back_modrdn;
bi->bi_op_add = sock_back_add;
bi->bi_op_delete = sock_back_delete;
bi->bi_op_abandon = 0;
bi->bi_extended = sock_back_extended;
bi->bi_chk_referrals = 0;
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
return sock_back_init_cf( bi );
}
int
sock_back_db_init(
Backend *be,
struct config_reply_s *cr
)
{
struct sockinfo *si;
si = (struct sockinfo *) ch_calloc( 1, sizeof(struct sockinfo) );
be->be_private = si;
be->be_cf_ocs = be->bd_info->bi_cf_ocs;
return si == NULL;
}
int
sock_back_db_destroy(
Backend *be,
struct config_reply_s *cr
)
{
free( be->be_private );
return 0;
}
#if SLAPD_SOCK == SLAPD_MOD_DYNAMIC
/* conditionally define the init_module() function */
SLAP_BACKEND_INIT_MODULE( sock )
#endif /* SLAPD_SOCK == SLAPD_MOD_DYNAMIC */
|