aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-05* Four more warnings bite the dust.Adam Frisby1-1/+2
2008-03-04Cleaned up a couple compiler warnings.Jeff Ames1-2/+3
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson3-8/+77
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.
2008-03-04Added copyright heaaders. Minor cleanup.Jeff Ames6-12/+36
2008-03-03* More compiler warning nukage.Adam Frisby1-2/+0
2008-03-03* Removed a bunch of compiler warnings.Adam Frisby1-1/+1
2008-03-03* Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2-0/+56
* Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
2008-03-02Change handler001 through handler009 to moreCharles Krinke2-11/+11
appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
2008-02-26* Added base thread pool based presence informing to the message server. Teravus Ovares2-26/+86
* Not ready yet for use.
2008-02-26* More Message server stuff. Still not ready.Teravus Ovares6-47/+191
2008-02-25* Message Server Linkages (still not ready for use so don't start it yet)Teravus Ovares5-15/+146
2008-02-22* Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares1-2/+5
instances to prevent event race conditions
2008-02-21"threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen1-0/+1
compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
2008-02-20Minor cleanup.Jeff Ames37-53/+47
2008-02-19Remove "Loading inventory" messages from item inventory loadsJustin Clarke Casey1-12/+12
2008-02-19Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen1-1/+1
threads so it will be easier to debug.
2008-02-18* Output XmlRpc error message if user server gets a fault response from the ↵Justin Clarke Casey1-2/+9
region server on login * This will make it more obvious if one accidentally starts one's region server in standalone rather than grid mode but then tries to login to a grid (as I am wont to do) * We are now sending back a fault code (-32601) if no xmlrpc method is found rather than an ordinary message
2008-02-18* Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey2-11/+18
* Minor documentation bits
2008-02-18* Do not allow a user to be created if one with the same name already existsJustin Clarke Casey1-9/+14
2008-02-17Thank you very much, Diva for a patch to increase the Charles Krinke1-14/+24
grid server reliability.
2008-02-14* Took a stab at getting keys to work as intendedlbsa711-2/+2
[Provided by openlifegrid.com]
2008-02-14* Added more debugging output to GridManager to pin down the key exchange ↵lbsa711-3/+15
weirdness [Provided by openlifegrid.com]
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby3-20/+20
* 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.
2008-02-14Changed UserServer create user password input to cleartext so we can see ↵Tedd Hansen1-1/+2
what the all the fuzz/blur is about. Make sure that you hide your monitor and that there are no black vans with large antennas parked outside while you type the password. Actually, turn off your monitor while typing password. Then press reset button on your computer.
2008-02-13* Added some more comprehensive log entries on region login.lbsa711-5/+23
[Provided by openlifegrid.com]
2008-02-13* Minor guard for null case.lbsa711-2/+2
[Provided by openlifegrid.com]
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames3-12/+12
2008-02-07Update version numbers to 0.5Jeff Ames2-2/+2
2008-02-07Shorten root inventory create folder message.Charles Krinke1-2/+1
2008-02-05Converted logging to use log4net.Jeff Ames28-312/+295
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Added copyright statements.Jeff Ames2-2/+58
2008-02-04* Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey6-100/+85
* The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey5-34/+17
2008-02-02Turn on fastMode for map block queries to grid server if and only if grid is ↵Brian McBee1-0/+1
running MYSQL as the data source.
2008-02-02Thank you very much daTwitch for your first contribution to the C# simulator.Charles Krinke1-0/+13
This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid".
2008-02-02Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen1-2/+3
OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
2008-01-31* Add asset/texture cache statistics to region server consoleJustin Clarke Casey1-1/+1
* You can type 'stats' at the REGION# prompt to get this information in grid or standalone mode * Don't take these numbers as gospel yet, since for some reason textures displayed from inventory which require downloading from the server are being recorded as assets rather than textures * But I don't have any reason to believe they aren't broadly accurate. * I've put these in so I can tell whether the high memory usage on regions is down to the asset/texture cache * This will require a prebuild * DEV: Only adds needed to be implemented since, as far as I can tell, assets cached are currently never released. For my part, seeing large cache memory numbers will provoke me to think about doing something about this. * DEV: Now switched to using a singleton to get the stats reporters rather than threading the object through various layers * DEV: Will refactor the other server stats reporters to do this in one of the next commits
2008-01-30* Add 'asset not found' statistics to grid asset server statsJustin Clarke Casey1-2/+12
2008-01-30* Minor asset server message tweakJustin Clarke Casey1-1/+2
2008-01-30* Deal with asset requests with malformed guids to the asset server in more ↵Justin Clarke Casey1-6/+13
user-friendly way than throwing an Exception * Compact status messages to reduce verbosity and be more informative
2008-01-28* Add total logouts (and total logins) to server side user statsJustin Clarke Casey2-9/+13
* Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
2008-01-28* Move AssetStatsReporter to Framework.StatisticsJustin Clarke Casey3-82/+2
* The hooks are still plugged in too high at the asset server, but then next layer down is the database and this may be refactored soon. * This change will requires a prebuild
2008-01-26Removed ScriptServer.csproj from svn.Jeff Ames1-47/+0
2008-01-25* Add very basic initial login stats to the user serverJustin Clarke Casey3-10/+21
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
2008-01-23* Timer wants, ms, not secs!Justin Clarke Casey1-1/+1
* May also be another bug lurking
2008-01-23* Add very very very basic initial statistical information collection to ↵Justin Clarke Casey3-13/+112
asset server * stats can be seen by typing stats on the asset server command line * Currently collecting only raw requests for today and yesterday * And I haven't yet tested the 24 hour rollover
2008-01-20* Added hooks for logout to all IUserService and all that implement it.Teravus Ovares3-1/+39
* Added a Logout message with a name on the console * Added a *fixme* message to figure out why the current agent session is null * After updating you may notice that there's a login <user> and also a logout<user>
2008-01-15* Mother of all commits:Adam Frisby10-23/+79
* 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.
2008-01-12* Made it so that if you don't specify a key, the defaults will not be assumed.Adam Frisby1-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.
2008-01-12* In the interests of making life difficult for everyone, the Grid Server ↵Adam Frisby1-114/+127
now actually checks your authentication keys rather than ignoring them.