Set linefeed property.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 15 Oct 2010 23:58:02 +0000 (23:58 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Fri, 15 Oct 2010 23:58:02 +0000 (23:58 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/branches/REL_2@3346 cb58f699-b61c-0410-a6fe-9272a202ed29

shibsp/GSSRequest.h

index a58cc51..cb1c56f 100644 (file)
@@ -1,60 +1,60 @@
-/*\r
- *  Copyright 2010 Internet2\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-/**\r
- * @file shibsp/GSSRequest.h\r
- *\r
- * Interface to a GSS-authenticated request.\r
- */\r
-\r
-#if !defined(__shibsp_gssreq_h__) && defined(HAVE_GSSAPI)\r
-#define __shibsp_gssreq_h__\r
-\r
-#include <shibsp/base.h>\r
-#include <xmltooling/io/GenericRequest.h>\r
-\r
-#ifdef HAVE_GSSGNU\r
-# include <gss.h>\r
-#elif defined HAVE_GSSMIT\r
-# include <gssapi/gssapi.h>\r
-# include <gssapi/gssapi_generic.h>\r
-#else\r
-# include <gssapi.h>\r
-#endif\r
-\r
-namespace shibsp {\r
-\r
-    /**\r
-     * Interface to a GSS-authenticated request.\r
-     */\r
-    class SHIBSP_API GSSRequest : public virtual xmltooling::GenericRequest\r
-    {\r
-    protected:\r
-        GSSRequest();\r
-    public:\r
-        virtual ~GSSRequest();\r
-\r
-        /**\r
-         * Returns the GSS-API context established for this request, or\r
-         * GSS_C_NO_CONTEXT if none is available.\r
-         *\r
-         * @return  a GSS-API context handle, or GSS_C_NO_CONTEXT\r
-         */\r
-        virtual gss_ctx_id_t getGSSContext() const=0;\r
-    };\r
-};\r
-\r
-#endif /* __shibsp_gssreq_h__ */\r
+/*
+ *  Copyright 2010 Internet2
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file shibsp/GSSRequest.h
+ *
+ * Interface to a GSS-authenticated request.
+ */
+
+#if !defined(__shibsp_gssreq_h__) && defined(HAVE_GSSAPI)
+#define __shibsp_gssreq_h__
+
+#include <shibsp/base.h>
+#include <xmltooling/io/GenericRequest.h>
+
+#ifdef HAVE_GSSGNU
+# include <gss.h>
+#elif defined HAVE_GSSMIT
+# include <gssapi/gssapi.h>
+# include <gssapi/gssapi_generic.h>
+#else
+# include <gssapi.h>
+#endif
+
+namespace shibsp {
+
+    /**
+     * Interface to a GSS-authenticated request.
+     */
+    class SHIBSP_API GSSRequest : public virtual xmltooling::GenericRequest
+    {
+    protected:
+        GSSRequest();
+    public:
+        virtual ~GSSRequest();
+
+        /**
+         * Returns the GSS-API context established for this request, or
+         * GSS_C_NO_CONTEXT if none is available.
+         *
+         * @return  a GSS-API context handle, or GSS_C_NO_CONTEXT
+         */
+        virtual gss_ctx_id_t getGSSContext() const=0;
+    };
+};
+
+#endif /* __shibsp_gssreq_h__ */