NetWrok.HTTP.Zlib.InflateBlocks.InflateBlocks C# (CSharp) Method

InflateBlocks() private method

private InflateBlocks ( ZlibCodec z, System checkfn, int w ) : System
z ZlibCodec
checkfn System
w int
return System
        internal InflateBlocks(ZlibCodec z, System.Object checkfn, int w)
        {
            hufts = new int[MANY * 3];
            window = new byte[w];
            end = w;
            this.checkfn = checkfn;
            mode = TYPE;
            Reset (z, null);
        }