aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authorization/LocalAuthorizationServiceConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Another attempt at sorting out the auto group chicken and egg problems.onefang2019-08-021-2/+3
| | | | Are you a local? Asking for a friend.
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-2/+2
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-131-0/+2
|
* Fix a bug where logins to standalones would fail if the RegionReady module ↵Justin Clark-Casey (justincc)2012-03-191-7/+2
| | | | | | | was not active Unfortunately, the OnLoginsEnabled event is currently only guaranteed to fire if the RegionReady module is active. However, we can instantiate the AuthorizationService in the module RegionLoaded method since by this time all other modules will have been loaded
* Region access control! Region operators can now specify things like ↵Diva Canto2012-03-171-27/+16
| | | | DisallowForeigners (means what it says) and DisallowResidents (means that only admins and managers can get into the region). This puts the never-completed AuthorizationService to good use. Note that I didn't implement a grid-wide Authorization service; this service implementation is done entirely locally on the simulator. This can be changed as usual by pluging in a different AuthorizationServicesConnector.
* Pass the first name and last name from the agent circuit data to the ↵Justin Clark-Casey (justincc)2011-07-231-9/+8
| | | | | | | | | | authorization service rather than from the account. This is to accomodate situations where the authorization service is being used by the hypergrid, where visitors have no user account. See http://opensimulator.org/mantis/view.php?id=5517, this code is somewhat adapted/cleaned up from Michelle's patch I'm a little ambivalent about this since visitors could put anything in firstname/lastname so it's not much of an auth measure. It's up to the auth service to decide which data it actually uses. Possibly we should be passing through other info such as agent circuit ip
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-161-2/+2
| | | | and can be displayed at the client when an avatar is denied access to a region
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-3/+3
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+141
always grant access to an avatar entering the region if requested.