summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/ssl_types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/net/ssl_types.cpp')
-rw-r--r--src/mongo/util/net/ssl_types.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mongo/util/net/ssl_types.cpp b/src/mongo/util/net/ssl_types.cpp
index cc2f7e063ea..217da793c7c 100644
--- a/src/mongo/util/net/ssl_types.cpp
+++ b/src/mongo/util/net/ssl_types.cpp
@@ -35,21 +35,6 @@
namespace mongo {
-namespace {
-
-const transport::Session::Decoration<SSLPeerInfo> peerInfoForSession =
- transport::Session::declareDecoration<SSLPeerInfo>();
-
-} // namespace
-
-SSLPeerInfo& SSLPeerInfo::forSession(const transport::SessionHandle& session) {
- return peerInfoForSession(session.get());
-}
-
-const SSLPeerInfo& SSLPeerInfo::forSession(const transport::ConstSessionHandle& session) {
- return peerInfoForSession(session.get());
-}
-
const SSLParams& getSSLGlobalParams() {
return sslGlobalParams;
}