aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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
* * refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey2009-03-191-3/+4
| | | | via CommunicationsManager directly
* * 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
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-03-061-1/+1
|
* Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW2009-03-033-46/+3
| | | | it from OpenSim.Client.Linden to OpenSim.Framework.
* forgotten filesMW2009-03-031-0/+300
|
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-034-1/+763
| | | | | | | | 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.
* Refactoring of CreateCommsManagerPlugin.MW2009-03-031-2/+5
| | | | | Plus some general cleanup of a few other files (deleting excess blank lines etc)
* Added OpenSim.Client.Linden which is a (non shared) region module that ↵MW2009-03-021-0/+81
creates and initialises the LindenClientStack (or actually whatever client stack was set in opensim.ini) for that region. Currently this module is still at a early stage so just for testing, so its hardcoded to be disabled. To enable first turn off auto creation of the client stack in opensimbase (see last revision) and then in OpenSim.Client.Linden.LLClientStackModule change bool m_createClientStack = false; to true.