From 32b36d88af5120f245d7e72279fa2e2ff53c74ec Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Tue, 4 Aug 2009 23:27:23 +0000 Subject: [PATCH] * Removed even more cruft from the old method of overriding SSL checks * Updated the documentation on AppearanceManager.TextureData git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3058 52acb1d6-8a22-11de-b505-999d5b087335 --- OpenMetaverse.Http/CapsBase.cs | 9 +-------- OpenMetaverse/AppearanceManager.cs | 5 +++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/OpenMetaverse.Http/CapsBase.cs b/OpenMetaverse.Http/CapsBase.cs index 1ec703fa..d9c7d2ad 100644 --- a/OpenMetaverse.Http/CapsBase.cs +++ b/OpenMetaverse.Http/CapsBase.cs @@ -34,15 +34,8 @@ using System.Security.Cryptography.X509Certificates; namespace OpenMetaverse.Http { - public class TrustAllCertificatePolicy : ICertificatePolicy + public class TrustAllCertificatePolicy { - public TrustAllCertificatePolicy() { } - - public bool CheckValidationResult(ServicePoint sp, X509Certificate cert, WebRequest req, int problem) - { - return true; - } - public static bool TrustAllCertificateHandler(Object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; diff --git a/OpenMetaverse/AppearanceManager.cs b/OpenMetaverse/AppearanceManager.cs index cac29082..25226881 100644 --- a/OpenMetaverse/AppearanceManager.cs +++ b/OpenMetaverse/AppearanceManager.cs @@ -172,8 +172,9 @@ namespace OpenMetaverse } /// - /// A tuple containing a TextureID and a texture asset. Used to keep track - /// of currently worn textures and the corresponding texture data for baking + /// Holds a texture assetID and the data needed to bake this layer into + /// an outfit texture. Used to keep track of currently worn textures + /// and baking data /// public struct TextureData {