aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden/LLStandaloneLoginModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Making silent logoff of old hung sessions for new connections default forArthur Valadares2009-06-011-4/+0
| | | | | StandAlone users. Not touching grid.
* * Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares2009-05-291-0/+4
| | | | | | | | again" message and allow the region to kick the old user and log the new one without reporting any failure. Default is still to show message and fail login
* * Upgraded LLStandaloneLoginModule, LLProxyLoginModule and ↵Arthur Valadares2009-05-211-20/+52
| | | | | | | | | | | | LLClientStackModule to new region modules. This was needed because the stand alone and grid modules weren't deleting old scenes, which caused an issue when deleting and recreating a region with same name on same x,y coordinates. Tested it on standalone and issue is fixed. Requires prebuild to be run again. Fixes Mantis #3699
* - moving banned check and public/private check toDr Scofield2009-05-051-2/+3
| | | | | | | | | | Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-1/+1
|
* Adds session authentication upon NewUserConnections. Adds user key ↵diva2009-04-141-1/+1
| | | | authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
* * refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey2009-03-191-3/+4
| | | | via CommunicationsManager directly
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-03-061-1/+1
|
* Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW2009-03-031-1/+1
| | | | it from OpenSim.Client.Linden to OpenSim.Framework.
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-031-0/+259
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.