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