aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Authorization (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-8/+8
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-2/+1
2012-05-09Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)1-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.
2011-04-12Moved 3 request handlers from OpenSim.Framework.Servers.HttpServer up to ↵Diva Canto1-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.
2010-01-14Make the auth module silent when there is no configuration for itMelanie1-1/+2
2009-12-07Stop AuthorizationService from throwing an error if it's not configured.Melanie1-1/+1
Optional services should not cause red spew when they're not wanted
2009-10-31Patch + minor formatting fixes.Diva Canto1-3/+3
2009-10-31http://opensimulator.org/mantis/view.php?id=4337Douglas R. Miles1-1/+5
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-09-16updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart1-1/+3
and can be displayed at the client when an avatar is denied access to a region
2009-09-11Minor indentation cleanup.Diva Canto1-1/+1
2009-09-11Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart1-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.
2009-09-10Changed the interface of IAuthorizationService to get less data.Diva Canto1-9/+7
2009-09-10added AuthorizationRequest and AuthorizationResponse objects for passing ↵Rob Smart1-8/+9
Authorization messages over http. Added handling code for these in the AuthorizationServerConnector and AuthorizationServicesConnector
2009-09-10adding in working functionality for the remote connectorRob Smart1-4/+32
2009-09-10The stubs for an authorization service, at the moment the service will ↵Rob Smart1-0/+91
always grant access to an avatar entering the region if requested.