r5280: Auto commit for Debian build
[cl-modlisp.git] / variables.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: modlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          base.lisp
6 ;;;; Purpose:       Base data and functions for modlisp package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Dec 2002
9 ;;;;
10 ;;;; $Id: variables.lisp,v 1.8 2003/07/10 18:58:29 kevin Exp $
11 ;;;; *************************************************************************
12
13 (in-package #:modlisp)
14
15 (defconstant +default-modlisp-port+ 20123
16   "Default port for listen")
17
18 (defvar *modlisp-socket* nil
19   "the socket stream to modlisp")
20
21 (defvar *number-server-requests* 0
22   "number of requests for the server")
23
24 (defvar *number-worker-requests* 0
25   "number of requests for this worker process")
26
27 (defvar *close-modlisp-socket* t
28   "whether to close the modlisp socket at the end of this request")
29
30
31
32
33