diff --git a/src/Tiny_httpd_stream.ml b/src/Tiny_httpd_stream.ml index 9490e016..f55b0b29 100644 --- a/src/Tiny_httpd_stream.ml +++ b/src/Tiny_httpd_stream.ml @@ -327,4 +327,6 @@ let output_chunked (oc:out_channel) (self:t) : unit = ); output_string oc "\r\n"; done; + (* write another crlf after the stream (see #56) *) + output_string oc "\r\n"; ()