summaryrefslogtreecommitdiff
path: root/src/mongo/client/async_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/async_client.h')
-rw-r--r--src/mongo/client/async_client.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mongo/client/async_client.h b/src/mongo/client/async_client.h
index 82867a057ff..0967ad3fa2a 100644
--- a/src/mongo/client/async_client.h
+++ b/src/mongo/client/async_client.h
@@ -104,10 +104,8 @@ private:
Future<Message> _waitForResponse(boost::optional<int32_t> msgId,
const BatonHandle& baton = nullptr);
Future<void> _call(Message request, int32_t msgId, const BatonHandle& baton = nullptr);
- BSONObj _buildIsMasterRequest(const std::string& appName,
- executor::NetworkConnectionHook* hook);
- void _parseIsMasterResponse(BSONObj request,
- const std::unique_ptr<rpc::ReplyInterface>& response);
+ BSONObj _buildHelloRequest(const std::string& appName, executor::NetworkConnectionHook* hook);
+ void _parseHelloResponse(BSONObj request, const std::unique_ptr<rpc::ReplyInterface>& response);
auth::RunCommandHook _makeAuthRunCommandHook();
const HostAndPort _peer;