adapt httpd-handler-lib-interface and httpd-handler structure to
implementation of chunked transfer coding in handler-lib
This commit is contained in:
parent
15049e1c58
commit
d06479ee4b
|
@ -360,9 +360,7 @@
|
||||||
|
|
||||||
(define-interface httpd-handler-lib-interface
|
(define-interface httpd-handler-lib-interface
|
||||||
(export get-socket-host-string
|
(export get-socket-host-string
|
||||||
get-numeric-field-value
|
read-message-body))
|
||||||
get-body-length-from-content-length
|
|
||||||
chunked-transfer-coding?))
|
|
||||||
|
|
||||||
(define-interface httpd-basic-handlers-interface
|
(define-interface httpd-basic-handlers-interface
|
||||||
(export make-predicate-handler
|
(export make-predicate-handler
|
||||||
|
@ -722,9 +720,12 @@
|
||||||
|
|
||||||
(define-structure httpd-handler-lib httpd-handler-lib-interface
|
(define-structure httpd-handler-lib httpd-handler-lib-interface
|
||||||
(open scheme-with-scsh
|
(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))
|
(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-requests
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-errors)
|
httpd-errors)
|
||||||
|
|
Loading…
Reference in New Issue