[cpp-sp] branch master updated: Make some class members private.

Scott Cantor cantor.2 at osu.edu
Tue Feb 20 12:58:22 EST 2018


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository cpp-sp.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=b4f39cbe2df3a77e61c5d1e0aa22bfd893e6c62a

The following commit(s) were added to refs/heads/master by this push:
       new  b4f39cb   Make some class members private.
b4f39cb is described below

commit b4f39cbe2df3a77e61c5d1e0aa22bfd893e6c62a
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Feb 20 12:58:18 2018 -0500

    Make some class members private.
---
 shibsp/impl/StorageServiceSessionCache.h | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/shibsp/impl/StorageServiceSessionCache.h b/shibsp/impl/StorageServiceSessionCache.h
index 9222811..ba68bd0 100644
--- a/shibsp/impl/StorageServiceSessionCache.h
+++ b/shibsp/impl/StorageServiceSessionCache.h
@@ -112,13 +112,6 @@ namespace shibsp {
 
         unsigned long getCacheTimeout(const shibsp::Application& app) const;
 
-        xmltooling::logging::Category& m_log;
-        bool inproc;
-#ifndef SHIBSP_LITE
-        xmltooling::StorageService* m_storage;
-        xmltooling::StorageService* m_storage_lite;
-#endif
-
     private:
 #ifndef SHIBSP_LITE
         // maintain back-mappings of NameID/SessionIndex -> session key
@@ -150,9 +143,18 @@ namespace shibsp {
         void dormant(const char* key);
         static void* cleanup_fn(void*);
 
+        xmltooling::logging::Category& m_log;
+        bool inproc;
+#ifndef SHIBSP_LITE
+        xmltooling::StorageService* m_storage;
+        xmltooling::StorageService* m_storage_lite;
+#endif
+
         bool shutdown;
         boost::scoped_ptr<xmltooling::CondWait> shutdown_wait;
         boost::scoped_ptr<xmltooling::Thread> cleanup_thread;
+
+        friend class StoredSession;
     };
 
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list