]> git.sur5r.net Git - openldap/blob - contrib/tweb/tglobal.h
* configure.in: add tcl8.2 to list of tcl libs to search for, also added new MOD_TCL_LIB
[openldap] / contrib / tweb / tglobal.h
1 /*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
2 *                                                                          *
3 * tglobal.h..                                                              *
4 *                                                                          *
5 * Function:..Global variables for TWEB                                     *
6 *                                                                          *
7 *                                                                          *
8 * Authors:...Dr. Kurt Spanier & Bernhard Winkler,                          *
9 *            Zentrum fuer Datenverarbeitung, Bereich Entwicklung           *
10 *            neuer Dienste, Universitaet Tuebingen, GERMANY                *
11 *                                                                          *
12 *                                       ZZZZZ  DDD    V   V                *
13 *            Creation date:                Z   D  D   V   V                *
14 *            August 16 1996               Z    D   D   V V                 *
15 *            Last modification:          Z     D  D    V V                 *
16 *            September 13 1999          ZZZZ   DDD      V                  *
17 *                                                                          *
18 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
19
20 /*
21  * $Id: tglobal.h,v 1.8 1999/09/13 13:47:47 zrnsk01 Exp $
22  *
23  */
24
25
26 #ifndef _TGLOBAL_
27 #define _TGLOBAL_
28
29 #include "lber.h"
30 #include "ldap.h"
31
32
33 extern int      debug;
34 extern int      dosyslog;
35 extern int  ldap_syslog;
36 extern int  ldap_syslog_level;
37
38 extern struct timeval timestore[];
39 extern int items_displayed;
40
41 extern int              searchaliases;
42
43 #if OL_LDAPV >= 2
44
45 extern LDAPFriendlyMap      *fm;
46
47 #else
48
49 extern FriendlyMap      *fm;
50
51 #endif
52
53 extern LDAPFiltDesc     *filtd;
54
55 extern char     version[];
56 extern char     copyright[];
57
58 extern int      http;   /* HTTP-header in request -> also in reply */
59
60 extern int      request;
61
62
63 #endif /* _TGLOBAL */
64
65