summaryrefslogtreecommitdiff
path: root/src/mongo/transport/mock_session.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-53420 Make transport Session source/sink/poll functions noexceptBen Caimano2021-02-051-56/+70
|
* SERVER-51279 Updating runOnDataAvailableBen Caimano2020-12-031-1/+5
|
* SERVER-49106 Add poll function to the ServiceExecutor APIAmirsaman Memaripour2020-07-281-0/+22
|
* Revert "SERVER-49106 Add poll function to the ServiceExecutor API"Henrik Edin2020-07-231-22/+0
| | | | This reverts commit a3ed860ba4fbb9a662440c8e9608fef5fa6c8712.
* SERVER-49106 Add poll function to the ServiceExecutor APIAmirsaman Memaripour2020-07-221-0/+22
|
* SERVER-49114 Replace getSSLManager() with SSLManagerCoordinatorGabriel Marks2020-07-141-1/+5
|
* SERVER-49112 Add Session::getSSLConfigurationGabriel Marks2020-07-081-0/+7
|
* SERVER-40989 Get SockAddr out of HostAndPortMathias Stearn2019-06-061-4/+22
| | | | 224 bytes -> 40 bytes
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-1/+2
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* 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-39146 Refactor BatonJason Carey2019-02-051-4/+3
| | | | | Refactor the baton into regular and networking batons while also cleaning up the basic baton implementation.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-34739 Migrate to 1 connpool in ARSJason Carey2018-04-271-3/+4
| | | | | | | | Migrate to 1 connection pool in mongos. This change involves the introduction of a transport layer baton, which improves perf for a particular transport layer when doing local scatter/gather operations.
* SERVER-33821 Implement NetworkInterfaceTL and AsyncDBClientJonathan Reams2018-04-131-3/+3
|
* SERVER-33821 TL changes for NITLJason Carey2018-04-051-0/+2
| | | | Transport Layer changes for NetworkInterfaceTransportLayer
* SERVER-33539 Futurize TransportLayer APIMathias Stearn2018-03-091-4/+4
|
* SERVER-33300 Integrate TransportLayer with DBClientJonathan Reams2018-03-021-0/+4
|
* SERVER-33299 Add support for timeouts to TransportLayerASIO SessionsJonathan Reams2018-03-021-0/+2
|
* SERVER-33255 clean up TransportLayer APIMathias Stearn2018-02-131-6/+47
|
* SERVER-26674 Remove uses of locks in TransportLayerLegacysamantharitter2016-11-081-0/+80
- transport::Session becomes an abstract interface - narrow the TransportLayer interface - LegacySession owns its Connection object for fast access - refactor mock session and ticket classes into one common class