summaryrefslogtreecommitdiff
path: root/ext/compressors/zlib/zlib_compress.c
Commit message (Expand)AuthorAgeFilesLines
* WT-2548 Cap the amount of data handed to raw compression.Michael Cahill2016-04-181-9/+1
* Upgrade copyright notices from 2015 to 2016.Keith Bostic2016-01-011-1/+1
* Minor KNF, whitespace cleanup.Keith Bostic2015-05-031-11/+10
* KNFKeith Bostic2015-05-021-4/+2
* Move the find_slot function near the compress-raw function, its onlyKeith Bostic2015-05-021-26/+26
* Use Standard C type uint64_t for zlibMark Benvenuto2015-03-261-1/+1
* Shuffle the logic and add a pointer to remove some deflateCopy/deflateEndKeith Bostic2015-03-251-51/+59
* Use deflateCopy to copy streams for rollback in case the compressed size is t...Michael Cahill2015-03-251-5/+25
* Add debugging code to compare the compressed buffer against the originalKeith Bostic2015-03-241-42/+63
* Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-041-0/+1
* add config validation for Windows configMark Benvenuto2014-10-131-4/+0
* Style script.Keith Bostic2014-10-091-1/+1
* Initial Windows PortMark Benvenuto2014-10-081-1/+8
* Limit the maximum compression ratio our raw zlib implementation will allow. ...Michael Cahill2014-09-101-1/+8
* Update the API exposed by extensions that can be builtin.Alex Gorrod2014-06-201-0/+12
* More --with-builtins implementation.Alex Gorrod2014-06-201-1/+1
* Fix zlib builtin build, simplify parsing the list of builtins, don't list "./...Michael Cahill2014-06-201-10/+12
* More implementation of --with-builtins=Alex Gorrod2014-06-201-1/+15
* Reserve more memory for zlib to finish a raw buffer -- it turns out to need 2...Michael Cahill2014-05-131-1/+1
* Fix a comment.Keith Bostic2014-05-121-1/+1
* Don't loop on calls to deflate until Z_OK isn't returned, we're not addingKeith Bostic2014-05-121-3/+3
* Remove decrement of the destination length by one, when setting up forKeith Bostic2014-05-121-1/+1
* Don't ignore the return value from deflateEnd.Keith Bostic2014-05-121-1/+4
* If zlib compression fails because there's not enough room in the destinationKeith Bostic2014-05-101-7/+2
* whitespaceKeith Bostic2014-05-101-8/+4
* Run the "standard" extensions through the style checks, mostly add aKeith Bostic2014-05-101-2/+29
* Add a "noraw" flavor of zlib compression.Michael Cahill2014-02-031-41/+45
* Fix some zlib-specific issues:Michael Cahill2014-01-311-25/+42
* Fix a "may be uninitialized" warning in zlib.Michael Cahill2014-01-241-4/+4
* Remove some debug code from zlib.Michael Cahill2014-01-231-8/+2
* Fix some nits in the zlib compress implementation.Alex Gorrod2014-01-231-11/+6
* Improve comments in the zlib extensionMichael Cahill2014-01-231-2/+10
* Add support for zlib compressionMichael Cahill2014-01-231-0/+349