aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden/LLStandaloneLoginService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* A few more inches... Old friends things removed. Less references to ↵Diva Canto2010-01-081-245/+0
| | | | UserProfileService.
* First pass at the new login service. Still incomplete, but doesn't disrupt ↵Diva Canto2009-12-301-0/+1
| | | | the existing code.
* minor: formatting and commentsJustin Clark-Casey (justincc)2009-08-281-11/+6
|
* Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2009-06-271-1/+1
| | | | this.
* * Corrected CAPS namespacesArthur Valadares2009-06-181-1/+1
| | | | | * "luke, use the sed"
* InterServiceInventoryService references *almost* completely removed from the ↵diva2009-06-111-2/+3
| | | | simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
* * Making silent logoff of old hung sessions for new connections default forArthur Valadares2009-06-011-8/+2
| | | | | StandAlone users. Not touching grid.
* * Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares2009-05-291-1/+9
| | | | | | | | 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
* * Implements automatic loopback handling for standalone regions. Adam Frisby2009-05-231-2/+8
| | | | | * This /should/ make OpenSim behave properly when hosting behind a NAT router and utilizing port forwarding (but the router doesn't support Loopback)
* * Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.Adam Frisby2009-05-231-1/+1
|
* - moving banned check and public/private check toDr Scofield2009-05-051-1/+9
| | | | | | | | | | 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
* * Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey2009-04-231-1/+0
| | | | | | | | | cached) * Plugin not yet used * Existing functionality should not be affected in any way
* Another bit of refactoring to try to make sense of ↵diva2009-03-291-0/+1
| | | | OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
* * Appearance patches suite: These patches are applied to allow libomv bots ↵Sean Dague2009-03-251-1/+1
| | | | | | | | | | | | to wear outfits in the future. This functionality will be upstreamed later. ** Fixed call of new AvatarAppearance without arguments, which caused bots look like clouds of gas ** Added a SendAvatarData in ScenePresence.SetAppearance, which is expected after SetAppearance is run ** Fixed AssetXferUploader: CallbackID wasn't being passed on on multiple packets asset uploads ** Set VisualParams in AvatarAppearance to stop the alien looking bot from spawning and now looks a little better. *** TODO: Set better VisualParams value then 150 to everything
* * Normalized and pulled GetInventorySkeleton up.lbsa712009-03-201-34/+0
|
* * De-duplicated login service some morelbsa712009-03-201-36/+4
| | | | | | * Normalized m_inventoryService * Pulled AddActiveGestures up
* * Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa712009-03-121-138/+5
| | | | | | | | * Sometimes, null is a valid return value to indicate 'none found'. doh. * Sometimes, the Grid server does not send simURI - this you need to reconstruct yourself. Euw. (I believe) this solves mantis issue #3287
* * Reverted r8750 to do another round of debugging on mantis #3287lbsa712009-03-111-5/+138
|
* *** POTENTIAL BREAKAGE ***lbsa712009-03-101-138/+5
| | | | | | | | | * Finally got to the point where I could pull up the CustomiseResponse function. Major de-duplication. * Introduced FromRegionInfo on RegionProfileData * This revision needs both grid and standalone testing galore. Work in progress!
* * Re-aligned CustomiseResponse function for imminent up-pullinglbsa712009-03-101-16/+14
|
* Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW2009-03-031-2/+2
| | | | it from OpenSim.Client.Linden to OpenSim.Framework.
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-031-0/+433
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.