comparison src/eldap.h @ 276:6330739388db r21-0b36

Import from CVS: tag r21-0b36
author cvs
date Mon, 13 Aug 2007 10:30:37 +0200
parents
children 7df0dd720c89
comparison
equal deleted inserted replaced
275:a68ae4439f57 276:6330739388db
1 /* Definitions for the LDAP client interface for XEmacs.
2 Copyright (C) 1998 Free Software Foundation, Inc.
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #ifndef _XEMACS_ELDAP_H_
22 #define _XEMACS_ELDAP_H_
23
24 #ifndef HAVE_LDAP
25 #undef XLDAP
26 #undef XSETLDAP
27 #define LDAPP(x) 0
28 #undef CHECK_LDAP
29
30 #else /* HAVE_LDAP */
31
32 extern Lisp_Object Qopen, Qclosed;
33
34 struct Lisp_LDAP;
35
36 DECLARE_LRECORD (ldap, struct Lisp_LDAP);
37 #define XLDAP(x) XRECORD (x, ldap, struct Lisp_LDAP)
38 #define XSETLDAP(x, p) XSETRECORD (x, p, ldap)
39 #define LDAPP(x) RECORDP (x, ldap)
40 #define GC_LDAPP(x) GC_RECORDP (x, ldap)
41 #define CHECK_LDAP(x) CHECK_RECORD (x, ldap)
42 #define LDAP_LIVE_P(x) (EQ (x->status_symbol, Qopen))
43
44 #define CHECK_LIVE_LDAP(ldap) do { \
45 CHECK_LDAP (ldap); \
46 if (!LDAP_LIVE_P (XLDAP (ldap))) \
47 signal_simple_error ("Attempting to access closed LDAP connection", \
48 ldap); \
49 } while (0)
50
51
52
53
54 #ifdef emacs
55
56 Lisp_Object Fldapp (Lisp_Object object);
57 Lisp_Object Fldap_host (Lisp_Object ldap);
58 Lisp_Object Fldap_status (Lisp_Object ldap);
59 Lisp_Object Fldap_open (Lisp_Object host,
60 Lisp_Object ldap_plist);
61 Lisp_Object Fldap_close (Lisp_Object ldap);
62 Lisp_Object Fldap_search_internal (Lisp_Object ldap,
63 Lisp_Object filter,
64 Lisp_Object base,
65 Lisp_Object scope,
66 Lisp_Object attrs,
67 Lisp_Object attrsonly);
68
69 #endif /* emacs */
70
71
72 #endif
73
74
75 #endif /* _XEMACS_ELDAP_H_ */