X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=shibsp%2FServiceProvider.cpp;h=0e5b3dac8578714ab21341ac146290f2bdc74222;hb=452a6d91a0fa17bd3963a0840fb203ad91005317;hp=538fb2cc1ea00e95032550a6bc5a892208aed5d6;hpb=146da1eb11c2740260b61a953f3e39140e2c7570;p=shibboleth%2Fsp.git diff --git a/shibsp/ServiceProvider.cpp b/shibsp/ServiceProvider.cpp index 538fb2c..0e5b3da 100644 --- a/shibsp/ServiceProvider.cpp +++ b/shibsp/ServiceProvider.cpp @@ -144,6 +144,7 @@ namespace shibsp { void SHIBSP_DLLLOCAL clearHeaders(SPRequest& request) { const Application& app = request.getApplication(); app.clearHeader(request, "Shib-Session-ID", "HTTP_SHIB_SESSION_ID"); + app.clearHeader(request, "Shib-Session-Index", "HTTP_SHIB_SESSION_INDEX"); app.clearHeader(request, "Shib-Identity-Provider", "HTTP_SHIB_IDENTITY_PROVIDER"); app.clearHeader(request, "Shib-Authentication-Method", "HTTP_SHIB_AUTHENTICATION_METHOD"); app.clearHeader(request, "Shib-Authentication-Instant", "HTTP_SHIB_AUTHENTICATION_INSTANT"); @@ -420,6 +421,9 @@ pair ServiceProvider::doExport(SPRequest& request, bool requireSessio hval = session->getAuthnContextDeclRef(); if (hval) app->setHeader(request, "Shib-AuthnContext-Decl", hval); + hval = session->getSessionIndex(); + if (hval) + app->setHeader(request, "Shib-Session-Index", hval); // Maybe export the assertion keys. pair exp=settings.first->getBool("exportAssertion");