aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Linden (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker3-0/+15
the ball rolling on replacable modules. No user functionality yet
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2-3/+3
Change all uses of the HttpServer properties to use the new singleton
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble1-1/+1
this.
2009-06-18* Corrected CAPS namespacesArthur Valadares2-2/+2
* "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 ↵diva2-3/+4
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 Valadares2-12/+2
StandAlone users. Not touching grid.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares2-1/+13
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-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-2/+2
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)
2009-05-21* Upgraded LLStandaloneLoginModule, LLProxyLoginModule and ↵Arthur Valadares4-36/+125
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-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-1/+1
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-05-05- moving banned check and public/private check toDr Scofield3-9/+19
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-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-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-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-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-3/+4
via CommunicationsManager directly
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-06* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW3-46/+3
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03forgotten filesMW1-0/+300
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW4-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.
2009-03-03Refactoring of CreateCommsManagerPlugin.MW1-2/+5
Plus some general cleanup of a few other files (deleting excess blank lines etc)
2009-03-02Added OpenSim.Client.Linden which is a (non shared) region module that ↵MW1-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.