aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames4-4/+4
LICENSE.txt.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares1-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
2009-05-29* refactor: Remove redundent prim id attribute on Scene.AddSceneObject()Justin Clarke Casey1-2/+1
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 Frisby2-8/+8
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby3-7/+9
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-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-4/+5
-- 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 Scofield2-3/+5
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 Thielker2-2/+2
2009-04-23* Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey1-1/+1
cached) * Plugin not yet used * Existing functionality should not be affected in any way
2009-04-22* Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey1-4/+1
2009-04-22* Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey1-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
2009-04-18Commit agent to DB immediately after creation, for LLSD logins too. ↵diva1-0/+6
Addresses mantis #3471. Requires upgrade of User Server in grid mode for this fix to kick in.
2009-04-17* Change inventory archiver module to use profile cacheJustin Clarke Casey1-1/+2
* Clean up some log messages
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-2/+2
2009-04-17* Some more work on refactoring configs;lbsa711-2/+2
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva1-0/+46
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-04-05Added CreateObject(regionhandle, userID, itemID) to post objects that are to ↵diva1-1/+17
be fetched from the user's inventory server and rezzed in the region. Added all code necessary to fetch the item and the asset, and rez it inworld. The access to the item is uncap-ed and unverified -- I may place it later either under a cap or with auth verification. But in this model regions don't have the user's inventory, so they would have to guess the item IDs. Added safemode config to Standalone Hypergrid, similar effect to AllowRegionAccessToInventory in Inventory Server. Everyone should have these vars set to their default values except me!
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby1-25/+24
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-04-04DST setting wasn't transferred to client, leading to wrong time display.Homer Horwitz1-1/+1
2009-04-04Remove some Mono warnings.Homer Horwitz1-2/+2
2009-04-03Added one more delegate to Caps, and a few guards, so that these objects can ↵diva1-0/+14
be used from more than just Scenes. Added the NewFileAgentInvengory cap to HGInventoryService.
2009-04-01Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva3-15/+41
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames3-2077/+2077
2009-03-30HGInventoryService now uses the actual authority portion of the user's key ↵diva2-1043/+1042
to verify the key.
2009-03-30Sigh. Manual data typing grief.diva2-11/+5
2009-03-29Added Authorization client code that interfaces with HGLoginAuthService. ↵diva2-21/+84
Improved error handling in HGLoginAuthService. Instrumented HGInventoryService so that it can interface both with local and remote user and asset services.
2009-03-29Another bit of refactoring to try to make sense of ↵diva4-6/+2104
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-29Moved some files around, so that it's easier to share code between ↵diva2-0/+965
standalone and the grid services. Should not affect any functionality.