summaryrefslogtreecommitdiff
path: root/src/mongo/transport/message_compressor_manager_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includesBilly Donahue2022-05-061-1/+3
|
* SERVER-53150 Specify input/output to hello commandSara Golemon2021-02-101-10/+31
|
* Revert "SERVER-53150 Specify input/output to hello command"Kaloian Manassiev2021-02-101-31/+10
| | | | This reverts commit 92dfc822d41714b47bc20e260aafb54884909acc.
* SERVER-53150 Specify input/output to hello commandSara Golemon2021-02-101-10/+31
|
* SERVER-46127 unit tests log to a kTest componentGabriel Russell2020-04-141-1/+1
|
* SERVER-45567 removing util/log.h where I canGabriel Russell2020-02-211-1/+0
| | | | | | | o converting some log lines that were missed o fixing some missing includes create mode 100644 src/mongo/transport/ismaster_metrics.cpp
* SERVER-44064 Perform explicit cast on MessageCompressorManager parameterAdam Cooper2019-10-181-0/+20
|
* SERVER-43751 Recompute compressor manager message parametersAdam Cooper2019-10-071-0/+20
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-2/+3
|
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-15/+15
|
* SERVER-40356 Make ConstDataRange constructable from any byte-like typeJonathan Reams2019-04-061-6/+5
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-38168 Vendor Zstandard 1.3.7 to third_partyHenrik Edin2018-12-111-1/+28
| | | | Added a Zstd based message compressor.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-34805 Refactor the network libraries and move messages types to ↵Andrew Morrow2018-05-051-1/+1
| | | | rpc/protocol
* SERVER-31505 Simplify Snappy compressorJonathan Reams2017-10-161-4/+5
|
* SERVER-31273 Use Source/Sink version of snappy functionsJonathan Reams2017-09-291-1/+88
|
* SERVER-28008 Fix lintAndrew Morrow2017-08-241-2/+2
|
* SERVER-28008 Always reply to compressed messages with the same compressorAndrew Morrow2017-08-231-0/+59
|
* SERVER-27244 Status usage compile-time facilities.ADAM David Alan Martin2017-06-181-2/+2
| | | | | | | | | | | | | | | | | There are numerous places in the codebase where `mongo::Status` or `mongo::StatusWith< T >` objects are returned and never checked. Many of these are innocuous, but many of them are potentially severe bugs. This change introduces facilities to permit compile-time warning of unchecked `Status` and `StatusWith` usage on clang compilers. It introduces an `ignore` function which is useful to state that a specific "ignored status" case was intentional. It not presently an error, in clang builds, to forget to check a `Status` -- this will come in a later commit. This also introduces a `transitional_ignore` function, which allows for easy continual auditing of the codebase for current "whitelisted" unchecked-status instances. All present "ignored status" cases have been marked `transitional_ignore`.
* SERVER-27310 Add support for zlib wire protocol compressionHannes Magnusson2017-06-011-1/+8
| | | | | | Closes #1152 Signed-off-by: Jonathan Reams <jbreams@mongodb.com>
* SERVER-25267 SERVER-25265 Integrate compression with networking codeJonathan Reams2016-08-091-3/+66
| | | | and snappy compressor
* SERVER-25263 Add MessageCompressorManagerJonathan Reams2016-08-091-0/+123