[cpp-sp] 02/03: Register LogoutConsumer handler.
Codeberg
noreply at shibboleth.net
Thu May 28 18:46:39 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://codeberg.org/Shibboleth/cpp-sp/commit/af864e0a86daff21e687aee3e87bf02d488b307f
commit af864e0a86daff21e687aee3e87bf02d488b307f
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Thu May 28 14:45:51 2026 -0400
Register LogoutConsumer handler.
---
shibsp/handler/impl/AbstractHandler.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/shibsp/handler/impl/AbstractHandler.cpp b/shibsp/handler/impl/AbstractHandler.cpp
index bff1fc6c..1d47e233 100644
--- a/shibsp/handler/impl/AbstractHandler.cpp
+++ b/shibsp/handler/impl/AbstractHandler.cpp
@@ -56,6 +56,7 @@ namespace shibsp {
extern SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<ptree&,const char*> >::Factory SessionInitiatorFactory;
extern SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<ptree&,const char*> >::Factory TokenConsumerFactory;
extern SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<ptree&,const char*> >::Factory LogoutInitiatorFactory;
+ extern SHIBSP_DLLLOCAL PluginManager< Handler,string,pair<ptree&,const char*> >::Factory LogoutConsumerFactory;
void SHIBSP_DLLLOCAL generateRandomHex(std::string& buf, unsigned int len) {
static char DIGITS[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
@@ -87,6 +88,7 @@ void SHIBSP_API shibsp::registerHandlers()
conf.HandlerManager.registerFactory(SESSION_INITIATOR_HANDLER, SessionInitiatorFactory);
conf.HandlerManager.registerFactory(TOKEN_CONSUMER_HANDLER, TokenConsumerFactory);
conf.HandlerManager.registerFactory(LOGOUT_INITIATOR_HANDLER, LogoutInitiatorFactory);
+ conf.HandlerManager.registerFactory(LOGOUT_CONSUMER_HANDLER, LogoutConsumerFactory);
}
Handler::Handler()
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list