]> andersk Git - moira.git/blobdiff - server/mr_srvdata.c
fixed POP counts; added nfsquotas phys_id
[moira.git] / server / mr_srvdata.c
index e6e5c5f08be41fae268c3c4e444acd9e1f74c13d..c8e7fef95e93ac242c1aee3d2d3d06ec90a81da7 100644 (file)
@@ -8,9 +8,19 @@
  *     Global variables inside the SMS server.
  * 
  *     $Log$
- *     Revision 1.3  1987-06-30 20:03:15  wesommer
- *     Added local realm global variable.
+ *     Revision 1.6  1988-06-30 12:38:46  mar
+ *     added variables to count queries by version, and  journal file
  *
+ * Revision 1.5  87/07/29  16:03:15  wesommer
+ * Added "now" variable.
+ * ,
+ * 
+ * Revision 1.4  87/07/14  00:38:14  wesommer
+ * Added log_flags global variable.
+ * 
+ * Revision 1.3  87/06/30  20:03:15  wesommer
+ * Added local realm global variable.
+ * 
  * Revision 1.2  87/06/21  16:42:16  wesommer
  * Performance work, rearrangement of include files.
  * 
@@ -77,3 +87,26 @@ char *takedown=NULL;
  */
 
 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.026945 seconds and 4 git commands to generate.