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 /* 10 * solaris-priv.h - items not exposed to outside but used by solaris clients 11 * of ldap 12 */ 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 /* 19 * Well-behaved extensions private to solaris OS will use option values 20 * between 0x3000 and 0x3FFF inclusive. 21 */ 22 #define LDAP_OPT_SOLARIS_EXTENSION_BASE 0x3000 /* to 0x3FFF inclusive */ 23 24 /* 25 * Option to install "SKIP a data base" dns routines 26 */ 27 #define LDAP_X_OPT_DNS_SKIPDB (LDAP_OPT_SOLARIS_EXTENSION_BASE + 0x0F01) 28 29 30 #ifdef __cplusplus 31 } 32 #endif 33 34 #endif /* _SOLARISPRIV_H */ 35