From 652e45b6145e39efa5d5aa6a0d851addfb680777 Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Fri, 21 Jul 2000 22:45:49 +0000 Subject: [PATCH] Changes that bring CLASH up to extended HTTP/1.0 support: Added response-initargs and entity-initargs fields to the clash-error conditions, so that signallers can return additional information to the client regarding errors. --- src/main/conditions.cl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/conditions.cl b/src/main/conditions.cl index 605521a..435b7ce 100644 --- a/src/main/conditions.cl +++ b/src/main/conditions.cl @@ -31,7 +31,11 @@ :documentation #+NIL "HTTP status code that might be returned to the client, if -this makes sense.")) +this makes sense.") + (response-initargs :initarg :response-initargs :initform nil + :reader clash-error-response-initargs) + (entity-initargs :initarg :entity-initargs :initform nil + :reader clash-error-entity-initargs)) (:report report-clash-error)) (define-condition simple-clash-error (simple-condition clash-error)