Added exports for new functionality and some older server and

connection stuff, as well as the driver functions
`start-http-listener' and `initialize-clash'.
This commit is contained in:
2000-10-09 23:13:06 +00:00
parent 7dde13fd51
commit 4a4feed22b

View File

@ -60,6 +60,9 @@
#:clash-error-response-initargs #:clash-error-response-initargs
#:clash-error-entity-initargs #:clash-error-entity-initargs
#:simple-clash-error #:simple-clash-error
#:clash-syntax-error
#:clash-syntax-error-fragment
#:clash-syntax-error-reason
;; URL ;; URL
#:url-error #:url-error
#:url-error-url-string #:url-error-url-string
@ -110,6 +113,14 @@
;; Buffer ;; Buffer
#:*default-io-buffer-size* #:*default-io-buffer-size*
#:with-io-buffer #:with-io-buffer
;; Connections
#:+connection-states+
#:connection
#:connection-state
#:connection-stream
#:connection-address
#:connection-hostname
#:close-connection
;; Messages ;; Messages
#:http-message #:http-message
#:http-message-server #:http-message-server
@ -119,7 +130,7 @@
#:header-value #:header-value
#:with-headers #:with-headers
#:request #:request
#:request-stream #:request-connection
#:request-method #:request-method
#:request-url #:request-url
#:response #:response
@ -143,6 +154,7 @@
#:response-date #:response-date
#:response-location #:response-location
#:response-pragma #:response-pragma
#:response-www-authenticate
#:response-set-cookie #:response-set-cookie
;; Entity ;; Entity
#:entity #:entity
@ -179,6 +191,9 @@
#:dynamic-form-resource-processor #:dynamic-form-resource-processor
#:parse-form-data #:parse-form-data
#:with-form-data #:with-form-data
#:redirector-resource
#:redirector-resource-code
#:redirector-resource-destination
;; Namespace ;; Namespace
#:namespace #:namespace
#:namespace-add-url #:namespace-add-url
@ -189,6 +204,17 @@
#:http-server #:http-server
#:http-server-namespace #:http-server-namespace
#:export-resource #:export-resource
#:serve-connection
#:read-request
#:get-request-class-using-server
#:serve-request
#:create-response-using-server
#:get-response-class-using-server
#:write-response
#:write-response-to-request
#:handle-server-error
#:with-server-handler
#:server-product-info
#:simple-http-server #:simple-http-server
#:http-server/0.9 #:http-server/0.9
#:http-server/1.0 #:http-server/1.0
@ -227,4 +253,11 @@
;; Readtable ;; Readtable
#:enable-clash-syntax #:enable-clash-syntax
#:disable-clash-syntax #:disable-clash-syntax
;; Utility
#:export-files
#:export-directory
#:with-string-response
;; Drivers
#:start-http-listener
#:initialize-clash
)) ))