aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-06* This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares3-17/+17
* These are different types then the OMV types because changing them causes just about all grid comms to break. If these were the libOMV types, then libOMV couldn't change them ever again after that.. or we'd have a breakage whenever they changed them. * This might introduce a map issue. Still checking it out.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares9-145/+145
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-28Mantis #1903Melanie Thielker1-0/+1
Thank you, cmickeyb, for a patch that fixes inventory folder retrieval.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-7/+7
2008-08-26* Fixed a bug that occurred if your home region wasn't logged in, in ↵Teravus Ovares1-12/+30
standalone. It wouldn't let you in even if your destination region is online with a 'region x not found' message. * The purpose of the check was to ensure that your home region was sent to your client properly when you connected. However, the desired result is that if the home region is down, but the destination region is online, the user should still get in. * Changes: if the home region isn't available, set the message to the client so that the home region is the destination region.
2008-08-25* minor: some logging conformance, code documentingJustin Clarke Casey1-5/+21
2008-08-25* Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey1-6/+23
region information
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2-1/+4
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
2008-08-21Mantis#904. Thank you kindly, Jonc for a patch that solves:Charles Krinke1-3/+9
LocalLoginService does not send the last position coords in the login response. This patch fixes the issue.
2008-08-19Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
Remove old comment in SnapshotStore pointed out by ChrisDown (bug #2000)
2008-08-19* This reverts a change where m_regions[RegionHandle] was replaced instead ↵Teravus Ovares1-2/+7
of removed in LocalBackEndServices It used to be like the change above a long long time ago but we found that it caused intermittent neighbor connectivity issues. I added comments above it so that it's looked at more closely next time.
2008-08-19Attachment persistence!!! Patch #9169 (Mantis #1171)Melanie Thielker1-16/+0
Attachments now save to MySQL. No reattach on login yet.
2008-08-18Formatting cleanup.Jeff Ames3-12/+12
2008-08-16Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2-0/+116
Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
2008-08-16Update svn properties, minor formatting cleanup.Jeff Ames2-2/+2
2008-08-15Plumb in the partner and the account title fields for profile info.Melanie Thielker1-0/+14
2008-08-15Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker1-9/+4
hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
2008-08-15Minor formatting cleanup.Jeff Ames1-6/+6
2008-08-15Fixes a case where neighboring region info cannot be obtainedMelanie Thielker1-3/+6
and the region server tries to output the region information using the unobtainable RegionInfo. Caused a crash in GS1GridServices.cs, line 928
2008-08-15Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2-9/+13
2008-08-14Adds UserFlags and GodLevel to the user data store and plumbs then in.Melanie Thielker1-0/+7
This will have no effect unless both the UGAI and the region are this revision or later
2008-08-14Mantis #1946Melanie Thielker2-1/+13
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-08-10Patch #9024Melanie Thielker1-1/+1
Bringing in an old private patch, increasing region registration timeout to 90 seconds. That allows regions witj > 10000 prims to register successfully. Running them.... well, YMMV
2008-08-10Update svn properties, minor formatting cleanup.Jeff Ames1-2/+0
2008-08-08Patch #9161Melanie Thielker1-2/+2
Increase GetUserProfile timeout from 6 to 30 seconds. Because the worker thread fo the XMLRPC data pump sits on a lock while the system starts, regions with upwards of 6000 prims throw and exception when that thread gets blocked for more than 6 seconds, due to this timeout, and won't start.
2008-08-08* Removed unused m_bAvailablelbsa711-1/+1
2008-08-08* All CheckRegion within an instance would use the same, global, bool for ↵lbsa712-29/+46
'Available', which would lead to intermittent failures on parallell teleport requests. * Solidified CheckRegion somewhat, adding a second try if the first failed.
2008-08-07Mantis#1894. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-1/+2
When a region is re-registered (e.g. because of region restart), it is removed from m_regions. If I understood that correctly, the old entry should be replaced, instead.
2008-08-01* minor: log message twiddlingJustin Clarke Casey1-6/+2
2008-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-1/+1
GetInventorySkeleton
2008-07-24* Separate out OGS1 calls used between services (rather than from region to ↵Justin Clarke Casey2-29/+2
services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1
2008-07-24* Fix spelling mistake in OGS1SecureInvenotryServiceJustin Clarke Casey1-0/+0
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey5-11/+11
than inter grid
2008-07-23* refactor: break out inter grid inventory services furtherJustin Clarke Casey5-11/+12
* more to follow
2008-07-23The new secure inventory server mode (in r5590) can now be disabled from ↵Johan Berntsson1-4/+18
OpenSim.ini. Default is to use the new mode.
2008-07-23adding files that were not included in r5589Johan Berntsson1-0/+324
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson1-0/+1
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-07-22* refactor: move new inventory service call by user server to OGS1 with all ↵Justin Clarke Casey1-2/+3
the other service calls * will post to mailing list about moving this shortly
2008-07-20Mantis#1797. Thank you kindly, StrawberryFride for a patch that solves:Charles Krinke1-1/+1
Shutdown command on region server was presenting an error, failing to send detach region for all regions, and failing to shut down
2008-07-18Patch #9151Melanie Thielker1-2/+2
Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
2008-07-14Patch #9150Melanie Thielker2-2/+2
Patch 7 of the region patches. Finish off the region parts of the estate dialog. Full user functionality. Terrain textures, heights, water, avatar counts, prim bonus, debug settings and region toggles can now be set from the dialog on a per-region basis. Estate stuff defaults to sane values where there are no defaults, to estate_settings.xml otherwise. Sun still b0rked :(
2008-07-14Patch #9147Melanie Thielker1-1/+1
Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
2008-07-04Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield1-0/+6
UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
2008-07-04mini-warnings-safari, plus cleanup of IUserServices method naming.Dr Scofield1-1/+1
2008-06-28Mantis#1626. Thank you kindly, Melanie for a patch that:Charles Krinke1-1/+1
Fixes IAvatarService for grid and standalone modes
2008-06-28more work on the support for multiple inventory servers. MW1-1/+1
The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
2008-06-28Extracted the Avatar appearance functions out of the IUserService interface ↵MW2-0/+2
and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior
2008-06-28plumbing for multiple inventory servers. Mostly done on the region server side. MW3-2/+19
TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
2008-06-27dr scofield's continuing warnings safari:Dr Scofield1-16/+17
* code caught lingering around with no real purpose other than causing warnings will be taken down.
2008-06-27dr scofield's warning safari:Dr Scofield3-4/+4
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables