]> git.sur5r.net Git - openldap/blob - servers/slapd/globals.c
filter_candidate tweaks, search_stack tweaks
[openldap] / servers / slapd / globals.c
1 /* globals.c - various global variables */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include "lber_pvt.h"
11
12 #include "slap.h"
13
14
15 /*
16  * global variables, in general, should be declared in the file
17  * primarily responsible for its management.  Configurable globals
18  * belong in config.c.  variables declared here have no other
19  * sensible home.
20  */
21
22 const struct berval slap_empty_bv = BER_BVC("");
23 const struct berval slap_unknown_bv = BER_BVC("unknown");
24
25 /* normalized boolean values */
26 const struct berval slap_true_bv = BER_BVC("TRUE");
27 const struct berval slap_false_bv = BER_BVC("FALSE");
28