aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden/LLStandaloneLoginService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-01-10Remove "login disable", "login enable" and "login status" commands.Melanie1-12/+7
2010-01-08A few more inches... Old friends things removed. Less references to ↵Diva Canto1-245/+0
UserProfileService.
2009-12-30First pass at the new login service. Still incomplete, but doesn't disrupt ↵Diva Canto1-0/+1
the existing code.
2009-08-28minor: formatting and commentsJustin Clark-Casey (justincc)1-11/+6
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble1-1/+1
this.
2009-06-18* Corrected CAPS namespacesArthur Valadares1-1/+1
* "luke, use the sed"
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva1-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 :)
2009-06-01* Making silent logoff of old hung sessions for new connections default forArthur Valadares1-8/+2
StandAlone users. Not touching grid.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares1-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
2009-05-23* Implements automatic loopback handling for standalone regions. Adam Frisby1-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)
2009-05-23* Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.Adam Frisby1-1/+1
2009-05-05- moving banned check and public/private check toDr Scofield1-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
2009-04-23* Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey1-1/+0
cached) * Plugin not yet used * Existing functionality should not be affected in any way
2009-03-29Another bit of refactoring to try to make sense of ↵diva1-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.
2009-03-25* Appearance patches suite: These patches are applied to allow libomv bots ↵Sean Dague1-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
2009-03-20* Normalized and pulled GetInventorySkeleton up.lbsa711-34/+0
2009-03-20* De-duplicated login service some morelbsa711-36/+4
* Normalized m_inventoryService * Pulled AddActiveGestures up
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa711-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
2009-03-11* Reverted r8750 to do another round of debugging on mantis #3287lbsa711-5/+138
2009-03-10*** POTENTIAL BREAKAGE ***lbsa711-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!
2009-03-10* Re-aligned CustomiseResponse function for imminent up-pullinglbsa711-16/+14
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW1-2/+2
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-59/+61
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.
2009-02-17Major change to how appearance is managed, including changes in login and ↵diva1-0/+3
user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-1/+1
warnings. Fix some m_log declarations.
2009-02-12* optimized usings.lbsa711-1/+1
2009-02-07* Refactored UserLoginService.CustomiseResponse to be (almost) text-wide ↵lbsa711-8/+31
identical to LocalLoginService.CustomiseResponse in order to be able to pull them up.
2009-02-07Thank you dslake for a patch that:lbsa711-1/+1
* fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-1/+1
2009-01-06* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey1-1/+1
terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
2009-01-06* Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey1-3/+4
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-1/+2
2009-01-05* Add seed cap check to login testJustin Clarke Casey1-1/+1
2009-01-05* Check in login service tests beachheadJustin Clarke Casey1-3/+3
2008-12-17Kicking child agents off on the first login after a client crash. The child ↵diva1-1/+24
agents kickoff was missing from when this is run in grid mode. But, worse, turns out that this whole feature of kicking off the user after a crash was entirely missing from standalone mode.
2008-12-11Correct the last checkin.Homer Horwitz1-1/+1
2008-12-11Move from IP to hostname for seed caps on login, for gridmode and standalone.Homer Horwitz1-2/+2
All the other caps (except the initial one) are already sent with hostname instead of IP. NOTE: This changes gridserver and userserver
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey1-8/+3
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke1-1/+1
This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
2008-11-14* test: Add scene root agent test stub, since I'll be picking up with ↵Justin Clarke Casey1-3/+1
something else the next time I start coding on OpenSim
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-1/+22
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-26* Patch from JHurlimanTeravus Ovares1-3/+3
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+30
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey1-23/+41
startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
2008-09-14* Converted a number of methods within the login processes from private to ↵Adam Frisby1-8/+8
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey1-129/+128
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-07* Improve login failure handling.Justin Clarke Casey1-2/+4
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-6/+6
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-26* Fixed a bug that occurred if your home region wasn't logged in, in ↵Teravus Ovares1-12/+30
standalone. It wouldn't let you in even if your destination region is online with a 'region x not found' message. * The purpose of the check was to ensure that your home region was sent to your client properly when you connected. However, the desired result is that if the home region is down, but the destination region is online, the user should still get in. * Changes: if the home region isn't available, set the message to the client so that the home region is the destination region.