aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridManager.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* let Grid Servers specify a connect string in their configuration.Sean Dague2008-05-281-3/+3
|
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-251-4/+4
|
* i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2008-05-201-6/+18
| | | | | | | | | | | provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
* Formatting cleanup.Jeff Ames2008-05-161-32/+32
|
* Formatting cleanup.Jeff Ames2008-05-141-2/+2
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-131-6/+52
| | | | | | | | | | | | the status of the region using the region http uri just passed in * If the status cannot be retrieved, then the region startup will terminate. * The aim of this is for earlier detection of situations where the region can send messages out but cannot accept incoming requests (often due to firewall issues) * This is currently an extremely simplistic check which completely trusts whatever http uri is given by the region * This contact may be problematic, though since the user service needs to be able to contact the region http uri, it doesn't seem unreasonable for the grid to have to be able to do so too at this stage * This change will require a prebuild
* * Refactor: Creating grid login exceptions to try and break up a large method. Justin Clarke Casey2008-05-121-71/+109
| | | | | | | * This in preparation for further login validation to check that the region logging in is properly contactable. * Also increase verbosity of some error messages
* * If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey2008-05-121-1/+1
| | | | startup will now terminate instead of carrying on (and thus burying the error message)
* * Minor: Change 'delete region' message to region logout messageJustin Clarke Casey2008-05-121-1/+2
|
* * Minor: Commenting out message detailing all individual map information ↵Justin Clarke Casey2008-05-121-2/+1
| | | | dispatch for now
* * Minor: Initial cleaning up of some of the grid sim login messagesJustin Clarke Casey2008-05-121-22/+25
|
* * Rolled back a few changes.Adam Frisby2008-05-011-94/+91
|
* * Cleaning code still.Adam Frisby2008-05-011-91/+94
|
* * Breaking all the code, breaking all the code..!Adam Frisby2008-05-011-10/+3
| | | | | * Made a bunch more members static, removed some dead code, general cleaning.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-5/+5
| | | | (this took a while to run).
* * Fix a bug in the friends module that causes a friend not to appear online ↵Teravus Ovares2008-04-131-1/+16
| | | | | | | | when they were. * A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
* * Discerned between AddProfile and UpdateProfile in region registrationlbsa712008-04-111-1/+11
| | | | | :: Believe it or not, but INSERT/UPDATE is actually a better pattern than REPLACE, since, with INSERT/UPDATE you can catch erroneous UPDATES to non-INSERTed items as well as catch erroneous re-INSERTS. in 95% of the cases, you SHOULD have a clear INSERT context, and a clear and separate UPDATE context. If you think your case falls within the 5%, maybe you should re-evaluate your code. ::
* changing more references to OpenSim.DataSean Dague2008-04-021-5/+5
|
* * Increase timeout for initial simulator login from 16 to 30 secondsJustin Clarke Casey2008-03-261-21/+48
| | | | | | * Comments, capitalization
* Comment out an unused 'str' and add a WriteLine to useCharles Krinke2008-03-211-1/+1
| | | | | an "Exception e" with e.ToString() to eliminate 2 warnings.
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-181-56/+52
|
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-181-0/+25
| | | | | | | 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.
* Formatting cleanup.Jeff Ames2008-03-181-30/+27
|
* * made GridManager class publiclbsa712008-03-121-1/+1
|
* * Refactored out creation of LoginResponselbsa712008-03-121-114/+121
| | | | | * Refactored out ErrorResponse
* * Extracted RegionProfileData from Requestlbsa712008-03-121-129/+140
| | | | | * Introduced ValidateNewRegion and ValidateOverwrite
* * minor refactoringlbsa712008-03-121-84/+82
|
* * Applying patch from Mantis #607 - Grid Server crash. Thanks Diva.Adam Frisby2008-03-111-10/+22
|
* Cleaned up a couple compiler warnings.Jeff Ames2008-03-041-2/+3
|
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-041-4/+72
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* Minor cleanup.Jeff Ames2008-02-201-3/+0
|
* Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey2008-02-191-12/+12
|
* * Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey2008-02-181-0/+5
| | | | | | * Minor documentation bits
* Thank you very much, Diva for a patch to increase the Charles Krinke2008-02-171-14/+24
| | | | | grid server reliability.
* * Took a stab at getting keys to work as intendedlbsa712008-02-141-2/+2
| | | | | | | [Provided by openlifegrid.com]
* * Added more debugging output to GridManager to pin down the key exchange ↵lbsa712008-02-141-3/+15
| | | | | | | | | weirdness [Provided by openlifegrid.com]
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-14/+14
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* * Added some more comprehensive log entries on region login.lbsa712008-02-131-5/+23
| | | | | | [Provided by openlifegrid.com]
* * Minor guard for null case.lbsa712008-02-131-2/+2
| | | | | | [Provided by openlifegrid.com]
* Converted logging to use log4net.Jeff Ames2008-02-051-29/+30
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Turn on fastMode for map block queries to grid server if and only if grid is ↵Brian McBee2008-02-021-0/+1
| | | | running MYSQL as the data source.
* Thank you very much daTwitch for your first contribution to the C# simulator.Charles Krinke2008-02-021-0/+13
| | | | | | This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid".
* * Mother of all commits:Adam Frisby2008-01-151-6/+6
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * Made it so that if you don't specify a key, the defaults will not be assumed.Adam Frisby2008-01-121-5/+6
| | | | | * If you wish to turn off key authentication, set the values to "" (null) in the grid config, and do the same in clients.
* * In the interests of making life difficult for everyone, the Grid Server ↵Adam Frisby2008-01-121-114/+127
| | | | now actually checks your authentication keys rather than ignoring them.
* * Adding More to the MessageServer classes.Teravus Ovares2008-01-071-0/+2
| | | | | * Don't forget to prebuild
* * A few more Message Server comms related updatesTeravus Ovares2008-01-061-1/+62
|
* Added code to gridserver to prevent new region from connecting at X,Y ↵Brian McBee2008-01-061-112/+128
| | | | location already used by an existing region.
* * Optimized usingslbsa712007-12-271-8/+9
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Clean up the region initialization GridServer messages a bit.Charles Krinke2007-12-231-6/+8
|