aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Authorization (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-8/+8
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-2/+1
|
* Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)2012-05-091-0/+0
| | | | | | | | the actual class names. This is usually because the file name was singular (*Service*) but the class name was plural (*Services*). This is to make configuration easier rather than having to look in the c# code itself to find the slightly different name of the connector. This does not affect existing configuration since the files are being renamed rather than the classes.
* Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto2011-04-121-1/+0
| | | | OpenSim.Framework -- just pasted them in WebUtil. This is so that code that uses the Service connectors don't need to include the HttpServer dll -- that was odd.
* Make the auth module silent when there is no configuration for itMelanie2010-01-141-1/+2
|
* Stop AuthorizationService from throwing an error if it's not configured.Melanie2009-12-071-1/+1
| | | | Optional services should not cause red spew when they're not wanted
* Patch + minor formatting fixes.Diva Canto2009-10-311-3/+3
|
* http://opensimulator.org/mantis/view.php?id=4337Douglas R. Miles2009-10-311-1/+5
|
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-161-1/+3
| | | | and can be displayed at the client when an avatar is denied access to a region
* Minor indentation cleanup.Diva Canto2009-09-111-1/+1
|
* Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart2009-09-111-4/+3
| | | | | | IAuthorization interface method isAuthorizedForRegion looks up user and region data and delegates the remote authorization check to the AuthorizationServiceConnector This keeps the IAuthorization as clean as possible and moves the dependency of using a UserProfileData object out to the connector from the scene.
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-9/+7
|
* added AuthorizationRequest and AuthorizationResponse objects for passing ↵Rob Smart2009-09-101-8/+9
| | | | Authorization messages over http. Added handling code for these in the AuthorizationServerConnector and AuthorizationServicesConnector
* adding in working functionality for the remote connectorRob Smart2009-09-101-4/+32
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+91
always grant access to an avatar entering the region if requested.