summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authentication_session.h
diff options
context:
space:
mode:
authorLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-14 14:26:38 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-14 14:26:38 -0300
commit294bc6ecabf14c09c9bc8644704921dcf97cb44e (patch)
tree279b1e0bab53901a1647ac63c1c724f0f789a663 /src/mongo/db/auth/authentication_session.h
parent70be7c27a251621187a1de533462ae2bb1e3bd39 (diff)
parent1e917fd798aa25b7066d4b414b51184f13d5a092 (diff)
Update upstream source from tag 'upstream/6.0.10'debian/6.0.10-1
Update to upstream version '6.0.10' with Debian dir 2d176fa254eee97b139f712fec5709641335a8c3
Diffstat (limited to 'src/mongo/db/auth/authentication_session.h')
-rw-r--r--src/mongo/db/auth/authentication_session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/auth/authentication_session.h b/src/mongo/db/auth/authentication_session.h
index 0b95b4ed2fb..09206ab8b21 100644
--- a/src/mongo/db/auth/authentication_session.h
+++ b/src/mongo/db/auth/authentication_session.h
@@ -145,7 +145,7 @@ public:
* The database will be validated against the current database for this session.
*/
void updateDatabase(StringData database) {
- updateUserName(UserName("", database.toString()));
+ updateUserName(UserName("", database.toString()), false /* isMechX509 */);
}
/**
@@ -153,7 +153,7 @@ public:
*
* The user name will be validated against the current user name for this session.
*/
- void updateUserName(UserName userName);
+ void updateUserName(UserName userName, bool isMechX509);
/**
* Set the last user name used with `saslSupportedMechs` for this session.
@@ -235,7 +235,7 @@ private:
static boost::optional<AuthenticationSession>& _get(Client* client);
void _finish();
- void _verifyUserNameFromSaslSupportedMechanisms(const UserName& user);
+ void _verifyUserNameFromSaslSupportedMechanisms(const UserName& user, bool isMechX509);
Client* const _client;