-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathLDAPObject.h
More file actions
50 lines (38 loc) · 1.52 KB
/
LDAPObject.h
File metadata and controls
50 lines (38 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* See https://www.python-ldap.org/ for details. */
#ifndef __h_LDAPObject
#define __h_LDAPObject
#include "common.h"
#include "lber.h"
#include "ldap.h"
#if LDAP_API_VERSION < 2040
#error Current python-ldap requires OpenLDAP 2.4.x
#endif
#if PYTHON_API_VERSION < 1007
typedef PyObject *_threadstate;
#else
typedef PyThreadState *_threadstate;
#endif
typedef struct {
PyObject_HEAD LDAP *ldap;
_threadstate _save; /* for thread saving on referrals */
int valid;
} LDAPObject;
extern PyTypeObject LDAP_Type;
#define LDAPObject_Check(v) (Py_TYPE(v) == &LDAP_Type)
extern LDAPObject *newLDAPObject(LDAP *);
/* macros to allow thread saving in the context of an LDAP connection */
#define LDAP_BEGIN_ALLOW_THREADS( l ) \
{ \
LDAPObject *lo = (l); \
if (lo->_save != NULL) \
Py_FatalError( "saving thread twice?" ); \
lo->_save = PyEval_SaveThread(); \
}
#define LDAP_END_ALLOW_THREADS( l ) \
{ \
LDAPObject *lo = (l); \
_threadstate _save = lo->_save; \
lo->_save = NULL; \
PyEval_RestoreThread( _save ); \
}
#endif /* __h_LDAPObject */