adapt httpd-handler-lib-interface and httpd-handler structure to

implementation of chunked transfer coding in handler-lib
This commit is contained in:
vibr 2005-04-16 20:49:29 +00:00
parent 15049e1c58
commit d06479ee4b
1 changed files with 6 additions and 5 deletions

View File

@ -360,9 +360,7 @@
(define-interface httpd-handler-lib-interface
(export get-socket-host-string
get-numeric-field-value
get-body-length-from-content-length
chunked-transfer-coding?))
read-message-body))
(define-interface httpd-basic-handlers-interface
(export make-predicate-handler
@ -722,9 +720,12 @@
(define-structure httpd-handler-lib httpd-handler-lib-interface
(open scheme-with-scsh
format-net
crlf-io ; read-crlf-line
rfc822 ;read-rfc822-headers
format-net ;format-internet-host-address
(subset srfi-13 (string-trim-both string-trim string-prefix? string-reverse string-contains string-take))
sunet-utilities
handle-fatal-error
sunet-utilities ;get-header
httpd-requests
httpd-responses
httpd-errors)