| 12345678910111213141516171819 |
- /* See http://www.python-ldap.org/ for details.
- * $Id: constants.h,v 1.6 2009/04/17 12:19:09 stroeder Exp $ */
- #ifndef __h_constants_
- #define __h_constants_
- #include "common.h"
- extern void LDAPinit_constants( PyObject* d );
- extern PyObject* LDAPconstant( int );
- #ifndef LDAP_CONTROL_PAGE_OID
- #define LDAP_CONTROL_PAGE_OID "1.2.840.113556.1.4.319"
- #endif /* !LDAP_CONTROL_PAGE_OID */
- #ifndef LDAP_CONTROL_VALUESRETURNFILTER
- #define LDAP_CONTROL_VALUESRETURNFILTER "1.2.826.0.1.3344810.2.3" /* RFC 3876 */
- #endif /* !LDAP_CONTROL_VALUESRETURNFILTER */
- #endif /* __h_constants_ */
|