summaryrefslogtreecommitdiff
path: root/src/mongo/db
diff options
context:
space:
mode:
authorAdam Midvidy <amidvidy@gmail.com>2015-04-14 15:22:27 -0400
committerAdam Midvidy <amidvidy@gmail.com>2015-04-22 10:19:00 -0400
commit9bf7c1df8376377197f998f35566cc7e7f5ca03e (patch)
tree63702b38180207ad0ff3054ed811acd21b268df7 /src/mongo/db
parenta2d5d4333dee7679ba237cf049dcae5be66f8b30 (diff)
downloadmongo-9bf7c1df8376377197f998f35566cc7e7f5ca03e.tar.gz
SERVER-17606 add message parsers for OP_COMMAND/OP_COMMANDREPLY
Diffstat (limited to 'src/mongo/db')
-rw-r--r--src/mongo/db/commands.cpp2
-rw-r--r--src/mongo/db/repl/SConscript6
-rw-r--r--src/mongo/db/repl/fetcher.cpp2
-rw-r--r--src/mongo/db/repl/freshness_checker.cpp2
-rw-r--r--src/mongo/db/repl/network_interface_impl.cpp2
-rw-r--r--src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/db/commands.cpp b/src/mongo/db/commands.cpp
index 0db0b13e739..92e94bbd6a7 100644
--- a/src/mongo/db/commands.cpp
+++ b/src/mongo/db/commands.cpp
@@ -50,9 +50,9 @@
#include "mongo/db/jsobj.h"
#include "mongo/db/namespace_string.h"
#include "mongo/db/server_parameters.h"
+#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/s/write_ops/wc_error_detail.h"
#include "mongo/util/log.h"
-#include "mongo/util/net/get_status_from_command_result.h"
namespace mongo {
diff --git a/src/mongo/db/repl/SConscript b/src/mongo/db/repl/SConscript
index 000b1e08ad4..386d114d8d5 100644
--- a/src/mongo/db/repl/SConscript
+++ b/src/mongo/db/repl/SConscript
@@ -107,9 +107,9 @@ env.Library('repl_coordinator_impl',
'$BUILD_DIR/mongo/db/index/index_descriptor',
'$BUILD_DIR/mongo/fail_point',
'$BUILD_DIR/mongo/global_timestamp',
+ '$BUILD_DIR/mongo/rpc/command_status',
'$BUILD_DIR/mongo/server_options_core',
'$BUILD_DIR/mongo/service_context',
- '$BUILD_DIR/mongo/util/net/command_status',
'repl_coordinator_interface',
'replica_set_messages',
'replication_executor',
@@ -265,7 +265,7 @@ env.Library(
'replication_executor',
'$BUILD_DIR/mongo/logger/logger',
'$BUILD_DIR/mongo/namespace_string',
- '$BUILD_DIR/mongo/util/net/command_status',
+ '$BUILD_DIR/mongo/rpc/command_status',
],
)
@@ -278,7 +278,7 @@ env.Library(
'replication_executor',
'$BUILD_DIR/mongo/logger/logger',
'$BUILD_DIR/mongo/namespace_string',
- '$BUILD_DIR/mongo/util/net/command_status',
+ '$BUILD_DIR/mongo/rpc/command_status',
],
)
diff --git a/src/mongo/db/repl/fetcher.cpp b/src/mongo/db/repl/fetcher.cpp
index 43eda43edc2..18f927fd206 100644
--- a/src/mongo/db/repl/fetcher.cpp
+++ b/src/mongo/db/repl/fetcher.cpp
@@ -35,9 +35,9 @@
#include "mongo/db/jsobj.h"
#include "mongo/db/namespace_string.h"
#include "mongo/db/repl/replication_executor.h"
+#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/mongoutils/str.h"
-#include "mongo/util/net/get_status_from_command_result.h"
namespace mongo {
namespace repl {
diff --git a/src/mongo/db/repl/freshness_checker.cpp b/src/mongo/db/repl/freshness_checker.cpp
index ebe3d59b67b..2281d0b54ee 100644
--- a/src/mongo/db/repl/freshness_checker.cpp
+++ b/src/mongo/db/repl/freshness_checker.cpp
@@ -38,8 +38,8 @@
#include "mongo/db/repl/replica_set_config.h"
#include "mongo/db/repl/replication_executor.h"
#include "mongo/db/repl/scatter_gather_runner.h"
+#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/util/log.h"
-#include "mongo/util/net/get_status_from_command_result.h"
#include "mongo/util/scopeguard.h"
#include "mongo/util/time_support.h"
diff --git a/src/mongo/db/repl/network_interface_impl.cpp b/src/mongo/db/repl/network_interface_impl.cpp
index 8a7f50e6bbe..53e547206ac 100644
--- a/src/mongo/db/repl/network_interface_impl.cpp
+++ b/src/mongo/db/repl/network_interface_impl.cpp
@@ -45,11 +45,11 @@
#include "mongo/db/operation_context_impl.h"
#include "mongo/db/repl/network_interface_impl_downconvert_find_getmore.h"
#include "mongo/platform/unordered_map.h"
+#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/stdx/functional.h"
#include "mongo/stdx/list.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/log.h"
-#include "mongo/util/net/get_status_from_command_result.h"
#include "mongo/util/net/hostandport.h"
#include "mongo/util/time_support.h"
diff --git a/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp b/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
index ab278b5c7b7..b2027f50111 100644
--- a/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
+++ b/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
@@ -43,12 +43,12 @@
#include "mongo/db/repl/replication_coordinator_impl.h"
#include "mongo/db/repl/replication_executor.h"
#include "mongo/db/repl/topology_coordinator.h"
+#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/stdx/functional.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/fail_point_service.h"
#include "mongo/util/log.h"
#include "mongo/util/mongoutils/str.h"
-#include "mongo/util/net/get_status_from_command_result.h"
#include "mongo/util/time_support.h"
namespace mongo {