r5232: *** empty log message ***
[cl-modlisp.git] / impl-acl.lisp
index 47f5c14f4d7aa247eb31b9c4f0828de97f3220c3..48f30e326eacbd195c8c275dfe08c2c986796b64 100644 (file)
                                          :wait wait)))))
     (values proc listener)))
 
-(defun worker-process (stream function conn count)
-  (unwind-protect
-    #+ignore
-    (funcall function conn)
-
-    (excl:errorset (close conn) nil)))
-
 (defun start-socket-server (passive-socket function &key wait)
   ;; internal function run in the server lightweight process 
   ;; that continually processes the connection.
   ;; This code is careful to ensure that the sockets are 
   ;; properly closed something abnormal happens.
   (unwind-protect
-      (loop (let ((connection (socket:accept-connection passive-socket)))
-             (if wait
-                 (unwind-protect
-                     (funcall connection function)
-                   (excl:errorset (close connection) nil))
-               (let ((f function)
-                     (c connection)
-                     (name (next-worker-name))
-                 (mp:process-run-function
-                  name
-                   #'(lambda ()
-                       (unwind-protect
-                            (apache-command-issuer connection function)
-                         #+ignore
-                         (handler-case
-                             (apache-command-issuer function connection)
-                           (error (e)
-                             #+ignore
-                             (format t "~&Error ~A [~A]~%" e name))
-                           (:no-error ()
-                             #+ignore
-                             (format t "~&~A ended" name)))
-                           (excl:errorset (close connection) nil)))
-                     )))))
+       (loop
+       (let ((connection (socket:accept-connection passive-socket)))
+         (if wait
+             (unwind-protect
+                  (funcall connection function)
+               (excl:errorset (close connection) nil))
+             (let ((f function)
+                   (c connection)
+                   (name (next-worker-name)))
+               (mp:process-run-function
+                name
+                #'(lambda ()
+                    (unwind-protect
+                         (apache-command-issuer connection function)
+                      #+ignore
+                      (handler-case
+                          (apache-command-issuer function connection)
+                        (error (e)
+                          #+ignore
+                          (format t "~&Error ~A [~A]~%" e name))
+                        (:no-error ()
+                          #+ignore
+                          (format t "~&~A ended" name)))
+                      (excl:errorset (close connection) nil))))))))
     (ignore-errors (close passive-socket))))