aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden/LLStandaloneLoginModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-28* Standalone logins will now go through the sequence of "requested region, ↵John Hurliman1-0/+4
default region, any region" before giving up * Hip offset should have been added not subtracted (it's a negative offset). This puts avatar feet closer to the ground * Improved duplicate checking for terse updates. This should reduce bandwidth and walking through walls
2009-10-26Do case-insensitive comparisons on region names in LLStandaloneLoginModuleJohn Hurliman1-1/+1
2009-09-25Moved the property RegionLoginsEnabled from GridComms to the Scene -- not ↵Diva Canto1-1/+1
the scene itself but SceneCommunicationService, for now. Beginning to clear the code from using Region.Communications. grid stuff.
2009-08-10Replace the Replaceable modules nameMelanie1-1/+1
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker1-0/+5
the ball rolling on replacable modules. No user functionality yet
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-1/+1
Change all uses of the HttpServer properties to use the new singleton
2009-06-18* Corrected CAPS namespacesArthur Valadares1-1/+1
* "luke, use the sed"
2009-06-12* Move standalone login setup in LLStandaloneLoginmodule to RegionLoaded() ↵Justin Clarke Casey1-24/+27
from AddRegion() * This is necessary to avoid a dependency problem where LLStandaloneLoginModule references IInventoryService before the LocalInventoryServiceConnector is registered * Correct some copypasta log messages in LocalInventoryServiceConnector
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva1-1/+1
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
2009-06-01* Making silent logoff of old hung sessions for new connections default forArthur Valadares1-4/+0
StandAlone users. Not touching grid.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares1-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
2009-05-21* Upgraded LLStandaloneLoginModule, LLProxyLoginModule and ↵Arthur Valadares1-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
2009-05-05- moving banned check and public/private check toDr Scofield1-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
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva1-1/+1
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-3/+4
via CommunicationsManager directly
2009-03-06* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW1-1/+1
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-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.