[cpp-sp] 06/06: Windows Build: Start fleshing out support code for remoting.
Rod Widdowson
rdw at steadingsoftware.com
Tue Jan 21 14:17:35 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=12911dcb3383018ff9b6c09c41e22e3599990dbe
commit 12911dcb3383018ff9b6c09c41e22e3599990dbe
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Jan 21 14:17:23 2025 +0000
Windows Build: Start fleshing out support code for remoting.
---
Projects/vc22/shibsp.vcxproj | 5 +++++
Projects/vc22/shibsp.vcxproj.filters | 15 +++++++++++++++
2 files changed, 20 insertions(+)
diff --git a/Projects/vc22/shibsp.vcxproj b/Projects/vc22/shibsp.vcxproj
index 8d3c56b0..0ac8fc12 100644
--- a/Projects/vc22/shibsp.vcxproj
+++ b/Projects/vc22/shibsp.vcxproj
@@ -62,7 +62,9 @@
<ClInclude Include="..\..\shibsp\logging\Priority.h" />
<ClInclude Include="..\..\shibsp\platform\iis\ModuleConfig.h" />
<ClInclude Include="..\..\shibsp\remoting\ddf.h" />
+ <ClInclude Include="..\..\shibsp\remoting\impl\AbstractHTTPRemotingService.h" />
<ClInclude Include="..\..\shibsp\remoting\RemotingService.h" />
+ <ClInclude Include="..\..\shibsp\remoting\SecretSource.h" />
<ClInclude Include="..\..\shibsp\RequestMapper.h" />
<ClInclude Include="..\..\shibsp\session\SessionCache.h" />
<ClInclude Include="..\..\shibsp\SPRequest.h" />
@@ -141,6 +143,8 @@
<DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<ClCompile Include="..\..\shibsp\platform\iis\ModuleConfig.cpp" />
+ <ClCompile Include="..\..\shibsp\remoting\impl\AbstractHTTPRemotingService.cpp" />
+ <ClCompile Include="..\..\shibsp\remoting\impl\AbstractRemotingService.cpp" />
<ClCompile Include="..\..\shibsp\remoting\impl\ddf.cpp">
<DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
@@ -150,6 +154,7 @@
<DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<ClCompile Include="..\..\shibsp\remoting\impl\RemotingService.cpp" />
+ <ClCompile Include="..\..\shibsp\remoting\impl\SecretSource.cpp" />
<ClCompile Include="..\..\shibsp\session\impl\AbstractSessionCache.cpp" />
<ClCompile Include="..\..\shibsp\util\BoostPropertySet.cpp" />
<ClCompile Include="..\..\shibsp\util\CGIParser.cpp" />
diff --git a/Projects/vc22/shibsp.vcxproj.filters b/Projects/vc22/shibsp.vcxproj.filters
index 97f55aad..f1371348 100644
--- a/Projects/vc22/shibsp.vcxproj.filters
+++ b/Projects/vc22/shibsp.vcxproj.filters
@@ -234,6 +234,12 @@
<ClInclude Include="..\..\shibsp\session\SessionCache.h">
<Filter>Header Files\Session</Filter>
</ClInclude>
+ <ClInclude Include="..\..\shibsp\remoting\SecretSource.h">
+ <Filter>Header Files\Remoting</Filter>
+ </ClInclude>
+ <ClInclude Include="..\..\shibsp\remoting\impl\AbstractHTTPRemotingService.h">
+ <Filter>Header Files\Impl</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\shibsp\attribute\Attribute.cpp">
@@ -368,6 +374,15 @@
<ClCompile Include="..\..\shibsp\session\impl\AbstractSessionCache.cpp">
<Filter>Source Files\Session</Filter>
</ClCompile>
+ <ClCompile Include="..\..\shibsp\remoting\impl\AbstractHTTPRemotingService.cpp">
+ <Filter>Source Files\Remoting</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\shibsp\remoting\impl\AbstractRemotingService.cpp">
+ <Filter>Source Files\Remoting</Filter>
+ </ClCompile>
+ <ClCompile Include="..\..\shibsp\remoting\impl\SecretSource.cpp">
+ <Filter>Source Files\Remoting</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="..\..\shibsp\shibsp.rc">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list