r5259: *** empty log message ***
[cl-modlisp.git] / variables.lisp
index 2edf38bf0093d234c7f096c88f45efdde03135c9..a4df081547ef0e7268de409a37500940d516bda9 100644 (file)
@@ -7,33 +7,22 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Dec 2002
 ;;;;
-;;;; $Id: variables.lisp,v 1.1 2003/07/04 22:41:06 kevin Exp $
+;;;; $Id: variables.lisp,v 1.7 2003/07/08 16:12:03 kevin Exp $
 ;;;; *************************************************************************
 
 (in-package #:modlisp)
 
-(defvar *listener-count* 0
-  "used to name listeners")
-
-(defvar *worker-count* 0
-  "used to name workers")
-
-(defvar *listener-socket*
-  "Socket for the listener")
-
-(defvar *listener-proc* nil
-  "Process for the listener")
-
 (defconstant +default-apache-port+ 20123
   "Default port for listen")
 
 (defvar *apache-socket* nil
   "the socket stream to apache")
 
-(defvar *close-apache-socket* nil
-  "set to T if you want to close the socket to apache after
-the current command")
+(defvar *number-server-requests* 0)
+(defvar *number-worker-requests* 0)
+(defvar *close-apache-socket* t)
+
+
 
-(defvar *apache-nb-use-socket* 0
-  "the number of requests sent in this socket")
 
+