blob: a458f42d91e67a16841c6250e9901c439bee2dee (
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
|
/* back-relay.h - relay backend header file */
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 2004-2024 The OpenLDAP Foundation.
* Portions Copyright 2004 Pierangelo Masarati.
* 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 Pierangelo Masarati for inclusion
* in OpenLDAP Software.
*/
#ifndef SLAPD_RELAY_H
#define SLAPD_RELAY_H
#include "proto-back-relay.h"
LDAP_BEGIN_DECL
typedef enum relay_operation_e {
relay_op_entry_get = op_last,
relay_op_entry_release,
relay_op_has_subordinates,
relay_op_last
} relay_operation_t;
typedef struct relay_back_info {
BackendDB *ri_bd;
struct berval ri_realsuffix;
int ri_massage;
} relay_back_info;
/* Pad relay_back_info if needed to create valid OpExtra key addresses */
#define RELAY_INFO_SIZE \
(sizeof(relay_back_info) > (size_t) relay_op_last ? \
sizeof(relay_back_info) : (size_t) relay_op_last )
LDAP_END_DECL
#endif /* SLAPD_RELAY_H */
|