summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Midvidy <amidvidy@gmail.com>2015-04-13 16:30:10 -0400
committerAdam Midvidy <amidvidy@gmail.com>2015-04-13 18:18:47 -0400
commit14fbbf72657a1d1898a7a9c9db48fc978992fde8 (patch)
treedc556aa2f9f33d641dcc4e20e144fc4552997466 /src
parent88fc9400e4e6389a9f3c36001bac4786426505f2 (diff)
downloadmongo-14fbbf72657a1d1898a7a9c9db48fc978992fde8.tar.gz
SERVER-17800 remove dead auditing functions for pseudo-commands
Diffstat (limited to 'src')
-rw-r--r--src/mongo/db/audit.cpp14
-rw-r--r--src/mongo/db/audit.h23
2 files changed, 0 insertions, 37 deletions
diff --git a/src/mongo/db/audit.cpp b/src/mongo/db/audit.cpp
index e0ff032ba87..4e08cdb2a5b 100644
--- a/src/mongo/db/audit.cpp
+++ b/src/mongo/db/audit.cpp
@@ -54,21 +54,12 @@ namespace audit {
const BSONObj& pattern,
ErrorCodes::Error result) MONGO_AUDIT_STUB
- void logFsyncUnlockAuthzCheck(
- ClientBasic* client,
- ErrorCodes::Error result) MONGO_AUDIT_STUB
-
void logGetMoreAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
long long cursorId,
ErrorCodes::Error result) MONGO_AUDIT_STUB
- void logInProgAuthzCheck(
- ClientBasic* client,
- const BSONObj& filter,
- ErrorCodes::Error result) MONGO_AUDIT_STUB
-
void logInsertAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
@@ -81,11 +72,6 @@ namespace audit {
long long cursorId,
ErrorCodes::Error result) MONGO_AUDIT_STUB
- void logKillOpAuthzCheck(
- ClientBasic* client,
- const BSONObj& filter,
- ErrorCodes::Error result) MONGO_AUDIT_STUB
-
void logQueryAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
diff --git a/src/mongo/db/audit.h b/src/mongo/db/audit.h
index 6a6cddda2d6..e784ffe4929 100644
--- a/src/mongo/db/audit.h
+++ b/src/mongo/db/audit.h
@@ -89,13 +89,6 @@ namespace audit {
ErrorCodes::Error result);
/**
- * Logs the result of an authorization check for the "unlock" pseudo-command.
- */
- void logFsyncUnlockAuthzCheck(
- ClientBasic* client,
- ErrorCodes::Error result);
-
- /**
* Logs the result of an authorization check for an OP_GET_MORE wire protocol message.
*/
void logGetMoreAuthzCheck(
@@ -105,14 +98,6 @@ namespace audit {
ErrorCodes::Error result);
/**
- * Logs the result of an authorization check for an "inprog" pseudo-command.
- */
- void logInProgAuthzCheck(
- ClientBasic* client,
- const BSONObj& filter,
- ErrorCodes::Error result);
-
- /**
* Logs the result of an authorization check for an OP_INSERT wire protocol message.
*/
void logInsertAuthzCheck(
@@ -131,14 +116,6 @@ namespace audit {
ErrorCodes::Error result);
/**
- * Logs the result of an authorization check for a "killop" pseudo-command.
- */
- void logKillOpAuthzCheck(
- ClientBasic* client,
- const BSONObj& filter,
- ErrorCodes::Error result);
-
- /**
* Logs the result of an authorization check for an OP_QUERY wire protocol message.
*/
void logQueryAuthzCheck(