Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion AD-BOF/LDAP-BOF/_include/ldap_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ typedef struct ldapmsg {
BOOLEAN ConnectionReferenced;
} LDAPMessage, *PLDAPMessage;

typedef struct l_timeval {
LONG tv_sec;
LONG tv_usec;
} LDAP_TIMEVAL;

// LDAP Constants
#define LDAP_PORT 389
#define LDAP_SSL_PORT 636
Expand Down Expand Up @@ -242,4 +247,4 @@ LDAPControlA* BuildSDFlagsControl(DWORD sdFlags, char* buffer, struct berval* be
char* WCharToChar(const wchar_t* wstr);
wchar_t* CharToWChar(const char* str);

#endif // LDAP_COMMON_H
#endif // LDAP_COMMON_H
Loading