bug#19939: http client: Chunks shouldn't be read at once
Fixed in commit 00d3ecf, which will be in 2.0.12. Ludo’.
bug#19939: http client: Chunks shouldn't be read at once
As of 2.0.11, the chunked input port of the HTTP client reads whole chunks at once: --8<---cut here---start->8--- (define (read-chunk port) (let ((size (read-chunk-header port))) (read-chunk-body port size))) (define (read-chunk-body port size) (let ((b