blob: 55dbe75af52b5fcf7ff9d10681c003d25e2840c6 (
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
|
/* sock.h - socket backend header file */
/* $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.
*/
#ifndef SLAPD_SOCK_H
#define SLAPD_SOCK_H
#include "proto-sock.h"
LDAP_BEGIN_DECL
struct sockinfo {
const char *si_sockpath;
slap_mask_t si_extensions;
slap_mask_t si_ops; /* overlay: operations to act on */
slap_mask_t si_resps; /* overlay: responses to forward */
regex_t si_dnpat; /* overlay: DN pattern to match */
struct berval si_dnpatstr;
};
#define SOCK_EXT_BINDDN 1
#define SOCK_EXT_PEERNAME 2
#define SOCK_EXT_SSF 4
#define SOCK_EXT_CONNID 8
extern FILE *opensock LDAP_P((
const char *sockpath));
extern void sock_print_suffixes LDAP_P((
FILE *fp,
BackendDB *bd));
extern void sock_print_conn LDAP_P((
FILE *fp,
Connection *conn,
struct sockinfo *si));
extern int sock_read_and_send_results LDAP_P((
Operation *op,
SlapReply *rs,
FILE *fp));
LDAP_END_DECL
#endif
|