aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-07* Improve login failure handling.Justin Clarke Casey1-2/+4
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares4-25/+25
* 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-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* 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-18Formatting cleanup.Jeff Ames1-2/+2
2008-08-16Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-0/+15
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-15Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames1-3/+5
2008-08-14Mantis #1946Melanie Thielker1-0/+10
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-08-08* All CheckRegion within an instance would use the same, global, bool for ↵lbsa711-9/+2
'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-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-1/+1
GetInventorySkeleton
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey3-9/+9
than inter grid
2008-07-23* refactor: break out inter grid inventory services furtherJustin Clarke Casey3-9/+10
* more to follow
2008-07-14Patch #9150Melanie Thielker1-1/+1
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-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 ↵MW1-0/+1
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. MW1-1/+2
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 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
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-0/+10
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-16Formatting cleanup.Jeff Ames5-42/+42
2008-05-14From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey1-1/+1
Rename SearializableRegionInfo to SerializableRegionInfo (class was already named correctly)
2008-05-14Formatting cleanup.Jeff Ames1-2/+2
2008-05-07* Fix minor local inventory service log typoJustin Clarke Casey1-1/+1
2008-05-01* Refactor: Remove redundant userID from further up the inventory request chainJustin Clarke Casey1-1/+5
2008-05-01* Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey1-35/+0
almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2-2/+1
with namespaces.
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-0/+5
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-25From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2-13/+64
the patch below adds support for start_location = uri:region&x&y&z to OpenSim which allows us to provide -url secondlife:///region/X/Y/Z to the SecondLife client during start up --- which will take you directly to region "region" at position X, Y, Z. also, i did increase the default Z value from 70 to 128 as we otherwise have the problem that on some regions we'd end up inside a mountain instead of on top of it.
2008-04-23* Implement proper emptying of trashcan on standaloneJustin Clarke Casey1-0/+10
* On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby4-14/+14
(this took a while to run).
2008-04-11* Eliminate a class of errors where an inventory request could be made ↵Justin Clarke Casey1-2/+9
before the region had completely received the inventory for the user. * A much larger race condition where the inventory request could be made before the region gets any data at all will also be fixed in the near future. * This change also fixes a regression from two patches ago where items stopped appearing in standalone inventory
2008-04-11* Minor inventory code cleanup following on from last patchJustin Clarke Casey1-2/+0
2008-04-11* Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey1-30/+15
at once, rather than each individual * This is required in order to work towards eliminating some inventory race conditions and to better deal with situations where a grid inventory server is slow or not responding.
2008-04-10renaming of attributes in UserAgentData for readabilitySean Dague1-4/+4
2008-04-10changing UserAgentData to use properties. This caused moreSean Dague1-4/+4
grief than expected, as monodevelop doesn't like to refactor properties of properties.
2008-04-10further renaming of properties for claritySean Dague2-3/+3
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague2-16/+16
actually a little more work than I expected given the copious use of out params.
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague2-10/+10
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-03-31* Minor: If a user exists but has no inventory in standalone, automatically ↵Justin Clarke Casey1-35/+20
create new inventory folders * This mirrors the grid behaviour
2008-03-30This update has good news and bad news, first the bad.Teravus Ovares1-4/+10
* This update breaks inter-region communications, sorry. * You will need to run prebuild. Next, the good; * This update solves the unexpected binary element when Linux simulators inform windows simulators and vice versa. So Linux Simulators and Windows simulators are 100% compatible again. * This update introduces an Integer in the prim crossing method to tell the receiving simulator which XML method to use to load the prim that crossed the border. If the receiving prim doesn't support the method, the prim crossing fails and no prims are lost. That being said, it's best to update all your simulators to this revision at once.
2008-03-29* Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey2-20/+1
implemented anyway.
2008-03-28* Send full inventory folder skeleton to standalone client logins rather ↵Justin Clarke Casey2-2/+5
than just the root child folders * This may resolve some current problems with non root child folders on standalone installations. * A fix for the same problem in grid mode will come soon.
2008-03-28* Refactor: Eliminate RequestUsersRoot() redundant methodJustin Clarke Casey1-1/+1
2008-03-28* Refactor: Rename CreateInventoryData() to GetInventorySkeleton()Justin Clarke Casey1-1/+2
* Replace the unused default GetInventorySkeleton() impleemntation with an abstract declaration - less confusing this way imho * Add some comments