aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1 (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-09-05uh-hum. It might help if I remembered to save the file.Diva Canto1-1/+1
2009-09-04Fixed some long-standing issues with appearance in HG1.Diva Canto1-3/+7
2009-08-17Add System.Xml reference to the console projectMelanie1-1/+1
2009-08-10Et voila! - Old inventory code removed.Diva Canto2-694/+0
2009-08-10First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto1-24/+0
everything-inventory in CommsManager, which wasn't actively used anymore.
2009-07-10* minor format changes and message additionsJustin Clarke Casey1-3/+3
2009-07-10* minor: standardize some logging messagesJustin Clarke Casey1-2/+1
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2-14/+6
Change all uses of the HttpServer properties to use the new singleton
2009-06-14Factoring out "land_data" / RequestLandData that was hanging off of ↵diva1-1/+3
IGridServices, erroneously. Not sure when this is used, but now it is implemented in the new model of service connectors. Hopefully it works.
2009-06-10Formatting cleanup.Jeff Ames1-1/+1
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames7-7/+7
LICENSE.txt.
2009-05-26Commented a log message related to users not found, because it floods the ↵diva1-4/+4
log when the sims have prims from foreign users.
2009-05-25* Upped version number to 0.6.5lbsa711-2/+2
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-2/+2
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-23* NetworkUtil now handles an error case in a way which is easier to debug.Adam Frisby1-1/+0
2009-05-20Add copyright headers, formatting cleanup.Jeff Ames1-1/+1
2009-05-14Added a bool variable to OGS1GridServices to be able to turn off the use of ↵MW1-9/+16
the remoteRegionInfoCache as caching region data like that stops a dynamic grid (where regions could change port or host at any time, useful for load balancing among other things) from working. The bool is currently hardcoded to be true (to use the cache). So need to hook this up to a config option later.
2009-05-12Thank you kindly, Patnad, for a patch that:Charles Krinke1-0/+2
This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker4-4/+4
2009-05-02Change of word in log message.diva1-1/+1
2009-04-27Another attempt at mantis #3527.diva1-1/+11
2009-04-23* Allow interested user data plugins to store temporary user profilesJustin Clarke Casey1-0/+5
* Database and the OGS1 plugins are not interested and hence ignore these calls
2009-04-23* Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey1-2/+2
cached) * Plugin not yet used * Existing functionality should not be affected in any way
2009-04-22* Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey1-4/+1
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 Casey3-738/+788
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-18Thank you dslake for diagnosing and fixing a race condition in ↵diva1-57/+65
OGS1SecureInventoryServer (mantis #3483). The provided patch was slightly modified to narrow the locking scope to smaller portions of the functions. Applied the same locking to HGInventoryService, which suffered from the same race condition.
2009-04-18Bug fix for standalone HG login. VerifySession should be local for local users.diva1-1/+1
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-1/+1
2009-04-17* Some more work on refactoring configs;lbsa711-1/+1
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-04-14Fix for minor bug introduced yesterday, HG only. Can't lookup the profile ↵diva1-1/+1
when we're looking up the profile...
2009-04-14Making OGS1UserServices friendly to subclassing.diva1-29/+45
2009-04-13* Some more experimental work on distributed assets. Nothing hotwired yet.lbsa711-75/+93
* Introduced preprocess step in FetchAsset (Might revert this later) * Some minor CCC * Added actual implementation of GetUserProfile( uri ) and the corresponding handler to OGS1. * Introduced non-functioning GetUserUri( userProfile) awaiting user server wireup (this might move elsewhere)
2009-04-08* Introduced some experimental code with regards to asset data substitutionlbsa711-0/+5
2009-04-01* Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa711-1/+1
2009-03-23Committing partial work on passing folders across instances. This may crash.Melanie Thielker2-0/+32
2009-03-22Add QueryItem method to secure inventory and HG inventory, change method sig toMelanie Thielker1-0/+16
provide additional information the HG needs.
2009-03-21Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker1-0/+16
MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
2009-03-18Adds support for unlink-region command in hypergrid.diva1-0/+22
2009-03-15regionInfo isn't defined here yet, which leads to a NRE. Grid-serverHomer Horwitz1-1/+1
provided us with the data, so let's use it for now. Hopefully fixes Mantis #3297.
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa711-1/+4
* 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-10* Refactored out Create() methods to ensure proper transformation between ↵lbsa711-13/+11
RegionProfileData and RegionInfo * Created ToRegionInfo method, still not using it pending peer review. * This is a preparatory commit for a subsequent login service refactoring.
2009-03-03forgotten filesMW1-2/+2
2009-02-20* Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa711-3/+3
0.6.3.* to better track down dll ref and overwrite problems.
2009-02-20THE BIG ANTI-REMOTING SCHLEP -- StartRemoting is no more. Sims in older ↵diva3-1176/+1
versions will have a hard time communicating with sims on this release and later, especially if they haven't transitioned to RESTComms at all. There's still some cleanup to do on assorted data structures, but the main functional change here is that sims no longer listen on remoting ports.
2009-02-20This moves the 2 friends-related interregion messages out of OGS1 and into ↵diva1-78/+0
the FriendsModule. No functional changes. Those messages were sent over XMLRPC, and that's how it continues to be for now. Just moving this couple of interregion messages out of OGS1, in preparation for the big shlep ahead.
2009-02-17Major change to how appearance is managed, including changes in login and ↵diva1-1/+5
user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
2009-02-12Commented a couple of not very useful log messages that are cluttering the ↵diva1-4/+4
log in sims that have objects belonging to foreign users.
2009-02-12* Remove a change which shouldn't have made it into the last commitJustin Clarke Casey1-2/+0
* Rogue change affected grid only
2009-02-12* Add missing OpenSIm.Framework.Communications ref for Wdinwos buildsJustin Clarke Casey1-0/+2
2009-02-12* optimized usings.lbsa715-9/+6