aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer.Modules (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames10-10/+10
LICENSE.txt.
2009-05-31Update svn properties.Jeff Ames1-528/+528
2009-05-30Added option (on my default) to the clone avatar function so that the ↵MW1-122/+141
clothes and attachments that the target avatar is wearing, to begin with, are removed. So the end result isn't a merger of those clothes/attachments and the ones the template avatar is wearing. Added IPAddress ListenIPAddress property to BaseHttpServer so that the listening/binding IP can be set.
2009-05-30Made it so ( by default) the Clone avatar function, propagates the ↵MW1-21/+28
permissions on the cloned items. This needs further testing to make sure all permissions are set correctly.
2009-05-30a few small changes to AvatarCreationModuleMW1-14/+17
2009-05-30Added a AvatarCreationModule to the user server. This handles the "cloning" ↵MW1-0/+499
of a existing avatar's inventory to another avatar's inventory (the base method will also create the inventory for a new avatar if the avatar doesn't alreayd have any inventory). The code also sets the target avatar as wearing whatever the template avatar was wearing (including attachments). The idea is to allow the use of this to give new avatars a more interesting avatar (and inventory set) than the current default. I have include a console command that will clone the inventory from one existing user (template avatar) to another existing avatar (target avatar). The format of the command is : "clone avatar <templateAvatarFirstName> <templateAvatarLastName> <targetAvatarFirstName> <targetAvatarLastName>" (to use this console command on new accounts, the "create user" command will need to be used first) While the code was designed for hooking up to a remote call from a web interface, I have left the hookup code out of this commit, as I believe most use cases will want to handle it differently. Also added a "trusted handler" to the inventory server to allow the user server to create new folders in a user's inventory. All this is in the old UGAIM servers so will need porting to the new servers.
2009-05-26Restoring the initial CAP Url to exactly what it used to be before Adam's ↵diva1-6/+13
changes. Adam's code is still there, but commented, until we figure out what's going on.
2009-05-26* Fiddles with some login network code to attempt to fix login bug.Adam Frisby1-1/+2
2009-05-23* Implements automatic loopback handling for standalone regions. Adam Frisby1-4/+6
* 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-3/+3
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby5-21/+25
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-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker9-2/+10
2009-04-29Flipping check_session xmlrpc's keep-alive to false, because some clients hang.diva1-1/+1
2009-04-22* Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey1-14/+2
service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
2009-04-22* Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey1-0/+1
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-14Adds session authentication upon NewUserConnections. Adds user key ↵diva2-71/+15
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-04-09* Added some more experimental code; nothing wired in so far.lbsa711-40/+68
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames1-224/+224
2009-03-29Another bit of refactoring to try to make sense of ↵diva2-0/+2
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 ↵diva1-0/+1
standalone and the grid services. Should not affect any functionality.
2009-03-27* This updates LibOMV to the current release 0.6.0 on March 19 2009Teravus Ovares1-2/+2
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.
2009-03-27Added the hg login procedure to the user server.diva1-0/+223
2009-03-20* Normalized and pulled GetInventorySkeleton up.lbsa711-62/+0
2009-03-20* De-duplicated login service some morelbsa711-29/+0
* Normalized m_inventoryService * Pulled AddActiveGestures up
2009-03-19* Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey1-0/+1
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa711-149/+47
* 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-28/+155
2009-03-10*** POTENTIAL BREAKAGE ***lbsa711-155/+28
* 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-2/+4
2009-02-26svn attribute fixes so that we can play nice between windows and linuxSean Dague1-77/+77
2009-02-26* renamed IRegionProfileService to IRegionProfileRouter to better reflect ↵lbsa711-2/+2
use (naming is a work in progress...) * introduced new IRegionProfileService that is going to be _one_ profileService * Had GridDBService inherit the IRegionProfileService (preparing for re-wiring things and de-duplicating eventually)
2009-02-25* minor: Remove most mono compiler warningsJustin Clarke Casey2-2/+2
2009-02-25Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW6-9/+9
name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
2009-02-25More refactoring of the Grid, User and Messaging servers. MW5-11/+94
2009-02-25A few updates necessary for load balancer.Mike Mazur1-0/+3
- handle GetUser request for nonexistent user gracefully - include throttle levels in ClientInfo - code to save/restore throttles in client stack - only update/send updates to active clients - make animation classes serializable
2009-02-24Setting svn:eol-style=native on new files.Mike Mazur7-2540/+2540
2009-02-24More work on modulising the User Server. MW1-0/+43
2009-02-24First step in separating out the Userserver console command handling to a ↵MW7-0/+2497
"module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.