forked from jeremycx/node-LDAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LDAPCnx.h
53 lines (44 loc) · 2.21 KB
/
LDAPCnx.h
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
51
52
#ifndef LDAPCNX_H
#define LDAPCNX_H
#include <nan.h>
#include <ldap.h>
class LDAPCnx : public Nan::ObjectWrap {
public:
static void Init(v8::Local<v8::Object> exports);
Nan::Callback * callback;
Nan::Callback * reconnect_callback;
Nan::Callback * disconnect_callback;
private:
explicit LDAPCnx();
~LDAPCnx();
static void New (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Event (uv_poll_t* handle, int status, int events);
static int OnConnect (LDAP *ld, Sockbuf *sb, LDAPURLDesc *srv,
struct sockaddr *addr, struct ldap_conncb *ctx);
static void OnDisconnect(LDAP *ld, Sockbuf *sb, struct ldap_conncb *ctx);
static int OnRebind (LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
ber_int_t msgid, void *params );
static void Search (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Delete (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Bind (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void SASLBind (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Add (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Modify (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Rename (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Abandon (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void GetErr (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void Close (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void GetErrNo (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void GetFD (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void StartTLS (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void InstallTLS (const Nan::FunctionCallbackInfo<v8::Value>& info);
static void CheckTLS (const Nan::FunctionCallbackInfo<v8::Value>& info);
static int isBinary (char * attrname);
int SASLBindNext(LDAPMessage** result);
const char* sasl_mechanism;
ldap_conncb * ldap_callback;
uv_poll_t * handle;
static Nan::Persistent<v8::Function> constructor;
LDAP * ld;
};
#endif