aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-03-16 23:40:34 +0000
committerJustin Clark-Casey (justincc)2015-03-16 23:40:34 +0000
commiteda09d87635683d92d1661f6bbedf678c879c08f (patch)
treec83df2e80607735bfe6641864e936902c697d7c2 /OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs
parentUpdate version info to 0.8.2.0 (diff)
downloadopensim-SC-eda09d87635683d92d1661f6bbedf678c879c08f.zip
opensim-SC-eda09d87635683d92d1661f6bbedf678c879c08f.tar.gz
opensim-SC-eda09d87635683d92d1661f6bbedf678c879c08f.tar.bz2
opensim-SC-eda09d87635683d92d1661f6bbedf678c879c08f.tar.xz
Fix XBakes simulator-side authentication regression failure
Unlike the other connectors, XBakes uses a service auth retrieved from ServiceAuth.Create() and not code inherited from BaseServiceConnector. Fixes regression from 7d3bafd5 (Wed 4 Mar 2015) where the new CompoundAuthenticator did not implement IServiceAuth.AddAuthorization()
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs b/OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs
index 1e1ee56..e0c413b 100644
--- a/OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs
+++ b/OpenSim/Framework/ServiceAuth/DisallowLlHttpRequest.cs
@@ -33,6 +33,8 @@ namespace OpenSim.Framework.ServiceAuth
33{ 33{
34 public class DisallowLlHttpRequest : IServiceAuth 34 public class DisallowLlHttpRequest : IServiceAuth
35 { 35 {
36 public string Name { get { return "DisallowllHTTPRequest"; } }
37
36 public void AddAuthorization(NameValueCollection headers) {} 38 public void AddAuthorization(NameValueCollection headers) {}
37 39
38 public bool Authenticate(string data) 40 public bool Authenticate(string data)