]> andersk Git - moira.git/blobdiff - server/mr_srvdata.c
April 29, 1989 change to increase the buffer size that grplists are
[moira.git] / server / mr_srvdata.c
index c4d732331cc2c469d053e130d2a4937561ebee93..12e97b729fb3d55ef2404413e1cb1149d44dc86b 100644 (file)
@@ -4,20 +4,17 @@
  *     $Header$
  *
  *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ *     For copying and distribution information, please see the file
+ *     <mit-copyright.h>.
  *
  *     Global variables inside the SMS server.
- * 
- *     $Log$
- *     Revision 1.1  1987-06-02 20:07:25  wesommer
- *     Initial revision
- *
  */
 
 #ifndef lint
 static char *rcsid_sms_srvdata_c = "$Header$";
 #endif lint
 
-#include "sms_private.h"
+#include <mit-copyright.h>
 #include "sms_server.h"
 
 /*
@@ -66,3 +63,35 @@ char buf1[BUFSIZ];
  * if this is non-null)
  */
 char *takedown=NULL;
+
+/* States for putting the server to sleep & waking it up again. */
+int dormant = AWAKE;
+
+/*
+ * The name of the local Kerberos realm
+ */
+
+char *krb_realm = NULL;
+/*
+ * Logging levels.
+ */
+
+int log_flags = LOG_CONNECT|LOG_REQUESTS|LOG_ARGS|LOG_RES;
+
+/*
+ * Time of last time through main loop.
+ */
+time_t now;
+
+
+/*
+ * Statistics on number of queries of each version that have been attempted
+ */
+
+int newqueries = 0;
+int oldqueries = 0;
+
+
+/* Journalling file */
+FILE *journal = NULL;
+
This page took 0.060593 seconds and 4 git commands to generate.