diff options
author | samantharitter <samantha.ritter@10gen.com> | 2017-06-27 12:09:40 -0400 |
---|---|---|
committer | Jason Carey <jcarey@argv.me> | 2017-07-13 17:40:53 -0400 |
commit | e1cae24805e3e7282958ee67a01555dd6ce40039 (patch) | |
tree | ebce77d9a502a193784483b2201b65e1a5010d98 /src/mongo/db/sessions_collection.h | |
parent | 9a49ee3a03e02597086e577f06a71a0723bc0582 (diff) | |
download | mongo-e1cae24805e3e7282958ee67a01555dd6ce40039.tar.gz |
SERVER-29610 Allow LogicalSessionIds to contain signed user information
Diffstat (limited to 'src/mongo/db/sessions_collection.h')
-rw-r--r-- | src/mongo/db/sessions_collection.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/sessions_collection.h b/src/mongo/db/sessions_collection.h index ec59f28c597..7692e634275 100644 --- a/src/mongo/db/sessions_collection.h +++ b/src/mongo/db/sessions_collection.h @@ -30,6 +30,7 @@ #include "mongo/db/logical_session_id.h" #include "mongo/db/logical_session_record.h" +#include "mongo/db/signed_logical_session_id.h" namespace mongo { @@ -44,10 +45,10 @@ public: virtual ~SessionsCollection(); /** - * Returns a LogicalSessionRecord for the given LogicalSessionId. This method + * Returns a LogicalSessionRecord for the given session id. This method * may run networking operations on the calling thread. */ - virtual StatusWith<LogicalSessionRecord> fetchRecord(LogicalSessionId lsid) = 0; + virtual StatusWith<LogicalSessionRecord> fetchRecord(SignedLogicalSessionId id) = 0; /** * Inserts the given record into the sessions collection. This method may run |