diff options
author | Melanie | 2009-08-29 17:49:58 +0100 |
---|---|---|
committer | Melanie | 2009-08-29 17:49:58 +0100 |
commit | 5b06079a832a8aa5775a0fa0c8d3477d41bd361f (patch) | |
tree | af7581632a3772d7003a44a17a3b97be5a0d85a1 /OpenSim/Server/Handlers/Neighbour | |
parent | Redesign the IAuthenticationService interface to use PKI. Sessioning is (diff) | |
download | opensim-SC_OLD-5b06079a832a8aa5775a0fa0c8d3477d41bd361f.zip opensim-SC_OLD-5b06079a832a8aa5775a0fa0c8d3477d41bd361f.tar.gz opensim-SC_OLD-5b06079a832a8aa5775a0fa0c8d3477d41bd361f.tar.bz2 opensim-SC_OLD-5b06079a832a8aa5775a0fa0c8d3477d41bd361f.tar.xz |
Remove a user of the old auth interface
Diffstat (limited to 'OpenSim/Server/Handlers/Neighbour')
-rw-r--r-- | OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs index 3de2245..c0933a8 100644 --- a/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs +++ b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs | |||
@@ -110,12 +110,13 @@ namespace OpenSim.Server.Handlers.Neighbour | |||
110 | httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized; | 110 | httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized; |
111 | return result; | 111 | return result; |
112 | } | 112 | } |
113 | if (!m_AuthenticationService.VerifyKey(regionID, authToken)) | 113 | // TODO: Rethink this |
114 | { | 114 | //if (!m_AuthenticationService.VerifyKey(regionID, authToken)) |
115 | m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); | 115 | //{ |
116 | httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; | 116 | // m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); |
117 | return result; | 117 | // httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; |
118 | } | 118 | // return result; |
119 | //} | ||
119 | m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID); | 120 | m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID); |
120 | } | 121 | } |
121 | 122 | ||