aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey2-3/+3
2009-01-06* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey1-1/+1
terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
2009-01-06* Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey1-3/+4
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-1/+2
2009-01-05* Add seed cap check to login testJustin Clarke Casey1-1/+1
2009-01-05* Check in login service tests beachheadJustin Clarke Casey1-3/+3
2009-01-03Fixed logic for sending foreign user information (HG).diva1-5/+16
2009-01-03Another interregion comms change that will not work well with previous ↵diva3-20/+39
versions. This commit moves InformRegionOfChildAgent from OGS1 to RESTComms, effectively having the complete child agent life cycle over REST: create=POST, update=PUT, close=DELETE. Additional changes include more functions in the IHyperlink interface, and some refactorings in the HG code for better reuse in RESTComms.
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
2009-01-01Minor fix for HG request neighbors. Should not return hyperlink neighbors, ↵diva2-4/+4
only neighbors on the same grid. I'm still not sure if this is a bug or a feature, so this may change again. My first commit of 2009 -- Happy New Year!
2008-12-31Minor bug fix in HG home regions management, removing the use of ↵diva1-8/+15
m_knownRegions.Count for creating the local handler. Local handlers are now created using a random number generator.
2008-12-24Backing off from the accidental removal one of the most valued 'features' of ↵diva1-2/+2
the HG: the ability to TP to regions on the grid that don't run HG. *smiles*
2008-12-24Better error handling for expect_hg_user on the HG.diva2-2/+12
2008-12-22Plumb in the birthdate from the user server reply to the cacheMelanie Thielker1-0/+1
2008-12-17Kicking child agents off on the first login after a client crash. The child ↵diva1-1/+24
agents kickoff was missing from when this is run in grid mode. But, worse, turns out that this whole feature of kicking off the user after a crash was entirely missing from standalone mode.
2008-12-15Attempt at fixing the HG home jump by looking up hyperlink regions before ↵diva1-2/+2
grid-local regions.
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-11Add a null check. Mantis #2798idb1-1/+1
2008-12-11Correct the last checkin.Homer Horwitz1-1/+1
2008-12-11Move from IP to hostname for seed caps on login, for gridmode and standalone.Homer Horwitz1-2/+2
All the other caps (except the initial one) are already sent with hostname instead of IP. NOTE: This changes gridserver and userserver
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-30Mantis #2584 (again)Melanie Thielker1-0/+1
Next step of diva's TP fixes and HG support
2008-11-28* refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2-4/+3
2008-11-28* minor: Eliminate unused paramter in LocalUserServices constructorsJustin Clarke Casey1-6/+2
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2-27/+7
2008-11-27* minor: rename m_parent to m_commsManager to make it a little clearer what ↵Justin Clarke Casey1-18/+18
it actually is
2008-11-27* Remove unused and largely unimplemented UpdateUserCurrentRegion()Justin Clarke Casey2-58/+0
* please say if this causes you a problem
2008-11-25Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+1
2008-11-25Update svn properties.Jeff Ames7-3366/+3366
2008-11-25* minor: eliminate mono compiler warningsJustin Clarke Casey3-8/+8
2008-11-25* Apply http://opensimulator.org/mantis/view.php?id=2640Justin Clarke Casey7-0/+3366
* This is Diva's hypergrid patch, as perviously discussed on the opensim-dev mailing list * Applied some minor prebuild.xml jiggling to resolve a dependency issue * Thanks Diva!
2008-11-24WIP: Adding a few things to PresenceModule. Not quite finished yet.Homer Horwitz1-1/+9
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2-2/+2
This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
2008-11-14* test: Add scene root agent test stub, since I'll be picking up with ↵Justin Clarke Casey2-5/+10
something else the next time I start coding on OpenSim
2008-11-12* Stop the pointless passing of a scene's own region handler back to it in ↵Justin Clarke Casey1-17/+32
region comms * Some scene methods ignored it, others did nothing if the region handler given did not match their own (which would never be triggered)
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-04Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
2008-11-03Add a bit more error-checking to GetFriendRegionInfos.Homer Horwitz1-13/+24
2008-11-03Thanks diva for a patch that removes an unnecessary dependency on ↵Dahlia Trimble1-2/+2
CommunicationsOGS1 from OGS1UserServices
2008-11-02Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz5-8/+164
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 Horwitz2-43/+91
- 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-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-1/+22
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-26* Patch from JHurlimanTeravus Ovares1-3/+3
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+30
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.