Http-Response-Input

(http-respone-input <http-response>) -> #f

Given a <http-response>, return the HTTP input channel; currently, this is always false.

This is here for completeness' sake in case someone ever writes their own http-response handler. They may wish to use this accessor in the context of HTTP pipelining or continuations.

>> (define resp (make-channel)):: [channel 589AC0]
>> (write-http-response resp 200 "Peachy" '("Content-Type: text/text")
   "Life is peachy")
:: null
>> (define http-resp (read-http-response resp))
:: [http-response [vector null 200 "Peachy" [dict ...] "Life is peachy"
   #f [primitive input]]]
>> (http-response-input http-resp)
:: #f