]> andersk Git - moira.git/commitdiff
added variables to count queries by version, and journal file
authormar <mar>
Thu, 30 Jun 1988 12:38:46 +0000 (12:38 +0000)
committermar <mar>
Thu, 30 Jun 1988 12:38:46 +0000 (12:38 +0000)
server/mr_srvdata.c

index e51e032d8a3e1ab2441ac6a2aa086b7e3b948b5c..c8e7fef95e93ac242c1aee3d2d3d06ec90a81da7 100644 (file)
@@ -8,10 +8,13 @@
  *     Global variables inside the SMS server.
  * 
  *     $Log$
- *     Revision 1.5  1987-07-29 16:03:15  wesommer
- *     Added "now" 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.
  * 
@@ -94,3 +97,16 @@ 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.038126 seconds and 5 git commands to generate.