From c28abb987efdb9d3692682fd605d842d13681d0c Mon Sep 17 00:00:00 2001 From: Sdogruyol Date: Fri, 24 Feb 2017 10:25:52 +0300 Subject: [PATCH] Fix #316 caused by Crystal --- src/kemal.cr | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/kemal.cr b/src/kemal.cr index 19ca562..fab959c 100644 --- a/src/kemal.cr +++ b/src/kemal.cr @@ -2,6 +2,49 @@ require "http" require "./kemal/*" require "./kemal/helpers/*" +# This is literally `hack` to fix [Crystal issue #4060](https://github.com/crystal-lang/crystal/issues/4060) +class Gzip::Header + def to_io(io) + # header + io.write_byte ID1 + io.write_byte ID2 + + # compression method + io.write_byte DEFLATE + + # flg + flg = Flg::None + flg |= Flg::EXTRA if !@extra.empty? + flg |= Flg::NAME if @name + flg |= Flg::COMMENT if @comment + io.write_byte flg.value + + # time + io.write_bytes(modification_time.epoch.to_u32, IO::ByteFormat::LittleEndian) + + # xfl + io.write_byte 0_u8 + + # os + io.write_byte os + + if !@extra.empty? + io.write_byte @extra.size.to_u8 + io.write(@extra) + end + + if name = @name + io << name + io.write_byte 0_u8 + end + + if comment = @comment + io << comment + io.write_byte 0_u8 + end + end +end + module Kemal # Overload of self.run with the default startup logging def self.run(port = nil)