aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services/LoginService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto2010-01-101-1243/+0
| | | | deleted, including old LoginService.
* Getting rid of the dead field RootInventoryFolderId on UserProfileData, It's ↵Kunnis2009-12-061-2/+0
| | | | | | not even stored in mysql. Signed-off-by: Melanie <melanie@t-data.com>
* * Standalone logins will now go through the sequence of "requested region, ↵John Hurliman2009-10-281-15/+11
| | | | | | | 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
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* minor: remove double initialization of user appearance module in ↵Justin Clark-Casey (justincc)2009-09-231-2/+3
| | | | Grid.UserServer.Main
* minor: formatting and commentsJustin Clark-Casey (justincc)2009-08-281-1/+12
|
* Added one conditional missing on login, for creating inventory if it doesn't ↵Diva Canto2009-08-171-1/+13
| | | | exist already. This hopefully fixes the master avatar problems on standalone.
* uh. how about *really* removing it, and not just write a comment above, hey ↵Diva Canto2009-08-161-1/+1
| | | | diva?
* Remove the call to ResetAttachments upon login. The info in the DB should ↵Diva Canto2009-08-161-1/+3
| | | | always have {itemID, assetID}.
* * minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey2009-07-101-9/+27
| | | | | | | | asset where appropriate * Send debug level notice to console if a user fails authentication
* * Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares2009-07-071-8/+17
| | | | standalone only, following the already implemented XMLRPC behavior
* Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2009-06-271-2/+2
| | | | this.
* InterServiceInventoryService references *almost* completely removed from the ↵diva2009-06-111-5/+22
| | | | 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-2/+2
| | | | | StandAlone users. Not touching grid.
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares2009-05-291-4/+15
| | | | | | | | 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
* * refactor: Remove redundent prim id attribute on Scene.AddSceneObject()Justin Clarke Casey2009-05-291-2/+1
|
* * Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.Adam Frisby2009-05-231-7/+7
|
* * Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2009-05-231-2/+3
| | | | | | | | | | needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
* - moving banned check and public/private check toDr Scofield2009-05-051-2/+4
| | | | | | | | | | 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/+1
| | | | | | | | | cached) * Plugin not yet used * Existing functionality should not be affected in any way
* * Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey2009-04-221-6/+7
| | | | | | | | | components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
* Commit agent to DB immediately after creation, for LLSD logins too. ↵diva2009-04-181-0/+6
| | | | Addresses mantis #3471. Requires upgrade of User Server in grid mode for this fix to kick in.
* * Change inventory archiver module to use profile cacheJustin Clarke Casey2009-04-171-1/+2
| | | | | | * Clean up some log messages
* Adds session authentication upon NewUserConnections. Adds user key ↵diva2009-04-141-0/+46
| | | | authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
* Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva2009-04-011-11/+30
| | | | subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-03-311-1093/+1093
|
* Another bit of refactoring to try to make sense of ↵diva2009-03-291-0/+1093
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.