summaryrefslogtreecommitdiff
path: root/src/components/protocol_handler/src/handshake_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/protocol_handler/src/handshake_handler.cc')
-rw-r--r--src/components/protocol_handler/src/handshake_handler.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/protocol_handler/src/handshake_handler.cc b/src/components/protocol_handler/src/handshake_handler.cc
index 4d306fd330..78f324e0ae 100644
--- a/src/components/protocol_handler/src/handshake_handler.cc
+++ b/src/components/protocol_handler/src/handshake_handler.cc
@@ -232,7 +232,8 @@ void HandshakeHandler::ProcessSuccessfulHandshake(const uint32_t connection_key,
context_.service_type_,
(is_service_already_protected)
? "Service is already protected"
- : "Service cannot be protected");
+ : "Service cannot be protected",
+ full_version_);
}
}
@@ -284,7 +285,8 @@ void HandshakeHandler::ProcessFailedHandshake(BsonObject& params,
context_.new_session_id_,
protocol_version_,
context_.service_type_,
- reason_msg + (err_reason.empty() ? "" : ": " + err_reason));
+ reason_msg + (err_reason.empty() ? "" : ": " + err_reason),
+ full_version_);
}
}