[cpp-sp] branch main updated: Revert c'tor change for Windows, but alter the order.

Codeberg noreply at shibboleth.net
Mon Jan 26 14:40:11 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/c96f9ffb33e262e2cfa1ccf40853da64b98ff098

The following commit(s) were added to refs/heads/main by this push:
     new c96f9ffb Revert c'tor change for Windows, but alter the order.
c96f9ffb is described below

commit c96f9ffb33e262e2cfa1ccf40853da64b98ff098
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Jan 26 09:39:31 2026 -0500

    Revert c'tor change for Windows, but alter the order.
---
 shibsp/remoting/impl/CurlHTTPRemotingService.cpp | 4 +++-
 shibsp/remoting/impl/WinHTTPRemotingService.cpp  | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/shibsp/remoting/impl/CurlHTTPRemotingService.cpp b/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
index 87cf72b4..c250a323 100644
--- a/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
+++ b/shibsp/remoting/impl/CurlHTTPRemotingService.cpp
@@ -170,7 +170,9 @@ namespace shibsp {
     }
 };
 
-CurlHTTPRemotingService::CurlHTTPRemotingService(ptree& pt) : AbstractHTTPRemotingService(pt),
+CurlHTTPRemotingService::CurlHTTPRemotingService(ptree& pt) :
+    AbstractRemotingService(pt),
+    AbstractHTTPRemotingService(pt),
     m_log(Category::getInstance(SHIBSP_LOGCAT ".RemotingService")),
         m_curlInit(false), m_poolsize(20), m_chunked(true)
 {
diff --git a/shibsp/remoting/impl/WinHTTPRemotingService.cpp b/shibsp/remoting/impl/WinHTTPRemotingService.cpp
index dc67ef44..50620fd4 100644
--- a/shibsp/remoting/impl/WinHTTPRemotingService.cpp
+++ b/shibsp/remoting/impl/WinHTTPRemotingService.cpp
@@ -222,7 +222,9 @@ StatusCallback(
     }
 };
 
-WinHTTPRemotingService::WinHTTPRemotingService(ptree& pt) : AbstractHTTPRemotingService(pt),
+WinHTTPRemotingService::WinHTTPRemotingService(ptree& pt)
+    : AbstractRemotingService(pt),
+    : AbstractHTTPRemotingService(pt),
     m_log(Category::getInstance(SHIBSP_LOGCAT ".RemotingService")),
     m_secure(false), m_caChainEngine(nullptr), m_caStore(nullptr),
     m_init(false), m_chunked(defaultChunking)

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


More information about the commits mailing list