blob: 2ada29082da7c62bf0eafce0ef327950aa3442af (
plain)
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
|
/*-----------------------------------------------------------------------
$Id: ldap.h 5 2006-01-04 17:53:54Z hubert $
-----------------------------------------------------------------------*/
/* ========================================================================
* Copyright 2006-2008 University of Washington
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* ========================================================================
*/
#ifndef _WEB_ALPINE_LDAP_INCLUDED
#define _WEB_ALPINE_LDAP_INCLUDED
#ifdef ENABLE_LDAP
#include "../../../pith/ldap.h"
typedef struct wpldapres {
char *str;
LDAP_SERV_RES_S *reslist;
struct wpldapres *next;
} WPLDAPRES_S;
typedef struct wpldap {
int query_no;
WPLDAPRES_S *ldap_search_list;
} WPLDAP_S;
extern WPLDAP_S *wpldap_global;
char *peLdapPname(char *, char *);
int peLdapEntryParse(LDAP_SERV_RES_S *, LDAPMessage *,
char ***, char ***, char ***, char ***,
char ***, char ***);
WPLDAPRES_S *free_wpldapres(WPLDAPRES_S *);
#endif /* ENABLE_LDAP */
#endif /* _WEB_ALPINE_LDAP_INCLUDED */
|