This file is indexed.

/usr/share/common-lisp/source/modlisp/variables.lisp is in cl-modlisp 0.6-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: modlisp -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          base.lisp
;;;; Purpose:       Base data and functions for modlisp package
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Dec 2002
;;;;
;;;; $Id: variables.lisp 7061 2003-09-07 06:34:45Z kevin $
;;;; *************************************************************************

(in-package #:modlisp)

(defconstant +default-modlisp-port+ 20123
  "Default port for listen")

(defvar *modlisp-socket* nil
  "the socket stream to modlisp")

(defvar *number-server-requests* 0
  "number of requests for the server")

(defvar *number-worker-requests* 0
  "number of requests for this worker process")

(defvar *close-modlisp-socket* t
  "whether to close the modlisp socket at the end of this request")


(defvar *ml-server* nil "Current ml-server instance")

(defclass ml-server ()
  ((listener :initarg :listener :initform nil :accessor listener)
   (port :initarg :port :initform nil :accessor port)
   (processor :initarg :processor :initform nil :accessor processor)
   (processor-args :initarg :processor-args :initform nil
		   :accessor processor-args)))