aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IGridServices.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-22* Catch the occasional resolution exception that comes out of ↵Justin Clarke Casey1-0/+8
SceneCommunicationService.EnableChildAgents so we can see what hostname is failing
2008-03-21* If a client session requests the same texture more than n times (currently ↵Justin Clarke Casey1-0/+7
n=5), we now drop the subsequent requests * This may improve region memory usage * This is a short-term response to a problem whereby some clients keep requesting the same texture even after we've sent it * This treats the symptom rather than the cause. * n can be adjusted by changing the constant at the top of UserTextureDownloadService if necessary
2008-03-18* Added the ability to type the partial name of a region in the start ↵Teravus Ovares1-0/+1
location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
2008-03-18Formatting cleanup.Jeff Ames1-27/+27
2007-12-27* Optimized usingslbsa711-3/+1
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-20* Added a configuration parameter on the Grid Server to disallow forceful ↵Teravus Ovares1-1/+2
banlists. * Added a way for Grid based configuration parameters to (generally used in overriding functionality) to get to the regions on Registration.
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-11-27Fixed an event in the events chain in inter-region communications.Teravus Ovares1-0/+1
As a consequence, restarting sims in the same process instance now shows them when they come back up in grid mode and standalone mode.
2007-11-16More cleaning up when deleting regions from a instance. NOTE: ↵MW1-0/+1
IGridServices.DeregisterRegion() method needs implementing for grid mode.
2007-11-13* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, ↵Teravus Ovares1-0/+1
manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done.
2007-10-30* Optimized usingslbsa711-5/+1
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-1/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-18Possible fix for: Remoting exceptions with adjacent non-running sims.Tleiades Hax1-1/+4
Bugs 449, 454, 408, 244, 197 implemented InformClientOfNeighbours as an asynchroneous process, handling timeouts without blocking the main thread. Improved logging of errors, removed catch all in try catch
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-07-16changed to native line ending encodingSean Dague1-41/+41
2007-07-12Fixed a number of bugs in the local InstantMessage handling, sending ↵MW1-2/+0
InstantMessages will no longer crash the server. But they still aren't really working correctly, you can't type replies to received messages.
2007-07-03*Removed GridInfo class as it has been previously replaced with the much ↵mingchen1-7/+2
better NetworkServersInfo class *Got the GridServer in OGS1 to go through with registering the region, but the actual storage of the region isnt working right now. **After this is fixed, grid mode should work!
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-3/+0
* added some licensing info