]> andersk Git - moira.git/blobdiff - server/mr_srvdata.c
fixed name section
[moira.git] / server / mr_srvdata.c
index c4d732331cc2c469d053e130d2a4937561ebee93..0a0ffa21c4c49c7c2d5f51a036da6676472ff627 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,32 @@ char buf1[BUFSIZ];
  * if this is non-null)
  */
 char *takedown=NULL;
+
+/*
+ * 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.04756 seconds and 4 git commands to generate.