aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ServiceAuth/IServiceAuth.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/ServiceAuth/IServiceAuth.cs')
-rw-r--r--OpenSim/Framework/ServiceAuth/IServiceAuth.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/ServiceAuth/IServiceAuth.cs b/OpenSim/Framework/ServiceAuth/IServiceAuth.cs
index fdd97b2..adde62f 100644
--- a/OpenSim/Framework/ServiceAuth/IServiceAuth.cs
+++ b/OpenSim/Framework/ServiceAuth/IServiceAuth.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Net;
29using System.Collections.Generic; 30using System.Collections.Generic;
30using System.Collections.Specialized; 31using System.Collections.Specialized;
31 32
@@ -36,7 +37,7 @@ namespace OpenSim.Framework.ServiceAuth
36 public interface IServiceAuth 37 public interface IServiceAuth
37 { 38 {
38 bool Authenticate(string data); 39 bool Authenticate(string data);
39 bool Authenticate(NameValueCollection headers, AddHeaderDelegate d); 40 bool Authenticate(NameValueCollection headers, AddHeaderDelegate d, out HttpStatusCode statusCode);
40 void AddAuthorization(NameValueCollection headers); 41 void AddAuthorization(NameValueCollection headers);
41 } 42 }
42} 43}