search for: max_wbits

Displaying 4 results from an estimated 4 matches for "max_wbits".

2009 May 05
1
Rcompression and Java Deflator
...ocs/api/java/util/zip/Deflater.html#Deflater(int, boolean) -------------- These threads also seem to be dealing with the same issue?. http://www.groupsrv.com/science/about98918.html http://www.ruby-forum.com/topic/183400 The Ruby thread says ?As could be seen in your first post, you are using -MAX_WBITS, which enables old (headerless? don't know what it's called) zlib format, that has no gzip header and no checksum. Maybe you should be using +MAX_WBITS (the default), which adds necessary header and checksum.? Ben Stabler Systems Analysis Group Parsons Brinckerhoff 503.478.2859 _________...
2007 Mar 08
6
Transfer-encoding: gzip
Hello! What is the simplest way to make merb respond to the client sending Accept-Encoding: gzip? Just checking if it exists, otherwise I''ll implement it myself. Regards, Magnus
2020 Jul 10
2
[PATCH nbdkit] New filter: gzip
...whole plugin. This is REQUIRED in order to + * implement gzip_get_size. See: https://stackoverflow.com/a/9213826 + * + * For use of inflateInit2 on gzip streams see: + * https://stackoverflow.com/a/1838702 + */ + memset (&strm, 0, sizeof strm); + zerr = inflateInit2 (&strm, 16+MAX_WBITS); + if (zerr != Z_OK) { + zerror ("inflateInit2", &strm, zerr); + return -1; + } + + in_block = malloc (block_size); + if (!in_block) { + nbdkit_error ("malloc: %m"); + return -1; + } + out_block = malloc (block_size); + if (!out_block) { + nbdkit_error...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address