summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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(