1 /*
2  * Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
3  * Use is subject to license terms.
4  */
5 
6 #ifndef _SOLARISPRIV_H
7 #define	_SOLARISPRIV_H
8 
9 #pragma ident	"%Z%%M%	%I%	%E% SMI"
10 
11 /*
12  * solaris-priv.h - items not exposed to outside but used by solaris clients
13  * of ldap
14  */
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 /*
21  * Well-behaved extensions private to solaris OS  will use option values
22  * between 0x3000 and 0x3FFF inclusive.
23  */
24 #define	LDAP_OPT_SOLARIS_EXTENSION_BASE 0x3000  /* to 0x3FFF inclusive */
25 
26 /*
27  * Option to install "SKIP a data base" dns routines
28  */
29 #define	LDAP_X_OPT_DNS_SKIPDB	(LDAP_OPT_SOLARIS_EXTENSION_BASE + 0x0F01)
30 
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif /* _SOLARISPRIV_H */
37