X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=variables.lisp;h=a4df081547ef0e7268de409a37500940d516bda9;hb=40b5dce89637f3b90b71ee6ee3932aafa595640b;hp=2edf38bf0093d234c7f096c88f45efdde03135c9;hpb=1bb49e27c591c846849c80b6e543a8b207f9dad4;p=cl-modlisp.git diff --git a/variables.lisp b/variables.lisp index 2edf38b..a4df081 100644 --- a/variables.lisp +++ b/variables.lisp @@ -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") +