aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-2/+2
2009-01-02* reference is to Nini.Config, not NiniJustin Clarke Casey1-1/+1
2009-01-02* Add Nini reference to Communications.OGS1Justin Clarke Casey1-0/+1
2008-12-13Mantis#2811. Thank you kindly, Diva for a patch that resolvesCharles Krinke1-9/+9
some of our DNS/dotted decimal issues that plague teleporting. We are increasing the MajorInterfaceVersion from 1 to 2 in the gridserver, so sims will need to be updated on various grids.
2008-12-05- Use the http-port that is now provided by the grid-server. If it isn't ↵Homer Horwitz1-0/+5
(because GridServer is too old), complain. Not used yet, but will be necessary for crossing regions correcly.
2008-11-11* Implement basic region filtering as described in ↵Justin Clarke Casey1-0/+1
https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
2008-11-08Mantis#2590. Thank you kindly, Diva for a patch that solves:Charles Krinke1-1/+10
When the given address to CheckRegion is wrong, it crashes the whole server. Patch included.
2008-11-07Attachments, attachments, and, did I say attachments?Melanie Thielker1-0/+3
Too many fixes to list.
2008-11-04* Improve the previous fix by pushing the exception catching down into OGS1 ↵Justin Clarke Casey1-8/+8
grid services
2008-11-02Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-1/+79
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-10-05Small optimization: Don't ask gridserver about regions on the local instance.Homer Horwitz1-0/+7
2008-10-03Add the missing bits for the new region-search:Homer Horwitz1-43/+76
- Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
2008-09-22* Remove some old libsecondlife workarounds as suggested by jhurliman in ↵Justin Clarke Casey1-5/+4
http://opensimulator.org/mantis/view.php?id=2236
2008-09-21* Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey1-5/+25
* Allow a grid mode region simulator to properly shutdown even if the grid service is offline
2008-09-20* Tidy up OGS1GridServicesJustin Clarke Casey1-101/+39
* Remove what should be unnecessary RemoteException catches when executing local backend calls
2008-09-19* Enables logins to regions on a grid once they have finished starting up ↵Justin Clarke Casey1-29/+46
(this does not include script startup).
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey1-2/+13
startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-5/+5
2008-09-07Mantis #2142Melanie Thielker1-30/+33
Thank you, HomerHorwitz, for a patch that fixes landmark teleport and about landmarks with the new OMV types.
2008-09-07* Improve login failure handling.Justin Clarke Casey1-0/+1
* 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-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey1-12/+10
process easier * documentation
2008-09-06* This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares1-3/+3
* 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 Ovares1-37/+37
* 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-28Update svn properties, formatting cleanup.Jeff Ames1-7/+7
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-18Formatting cleanup.Jeff Ames1-5/+5
2008-08-16Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-0/+101
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 Ames1-1/+1
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-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-08* Removed unused m_bAvailablelbsa711-1/+1
2008-08-08* All CheckRegion within an instance would use the same, global, bool for ↵lbsa711-20/+44
'Available', which would lead to intermittent failures on parallell teleport requests. * Solidified CheckRegion somewhat, adding a second try if the first failed.
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 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-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-21* Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares1-4/+66
World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
2008-06-14* minor: A few miscellaneous doc comments before I break and start on ↵Justin Clarke Casey1-2/+2
something else
2008-06-13* Double timeout on region registration XMLRPC call to the grid serviceJustin Clarke Casey1-1/+4
2008-06-04Formatting cleanup, minor refactoring, svn properties.Jeff Ames1-4/+4
2008-06-02* This update enables grid wide presence updates.Teravus Ovares1-1/+7
* You'll need to start-up the MessageingServer and set it up. It sets up like any of the other grid servers. * All user presence data is kept in memory for speed, while the agent is online. That means if you shutdown the messaging server or the messaging server crashes, it forgets who's online/offline. * Occasionally the region-cache will get stale if regions move around a lot. if it gets stale, run clear-cache on the messaging server console to clear the region cache.
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-0/+26
* 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-30Update svn properties. Formatting cleanup.Jeff Ames1-2/+4
2008-05-29Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke1-2/+6
that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
2008-05-16Formatting cleanup.Jeff Ames1-66/+66