I attached the patch here. The patch works for me. And I've tested it compared to the old way, say, read the content to memory then pass it as the body then send to the client. Please test this feature with bigger file (larger than 20MB), the small file is hard to show the difference. On average, the old way is 5 times slower than new way (10s vs. 50s). The test code is: ---------------------------code------------------------------ (define (send-the-file r fn) (define in (open-input-file fn)) (define size (stat:size (stat fn))) (define res (build-response #:headers `((content-length . ,size)))) (values res (lambda () (sendfile (request-port r) in size) (close in)))) (run-server (lambda (r b) (send-the-file r "/var/www/mediawiki-1.21.3.tar.gz")) 'http) ----------------------------end------------------------------ It's the users duty to pass all the related headers in this way. The patch was attached.