aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-207-22/+22
| | | | Works with LibSL rev>1532
* Refactor asset request processing for consistent status information on ↵Justin Clarke Casey2007-12-194-25/+46
| | | | whether an asset was actually found or not
* Misc. cleanup:Jeff Ames2007-12-191-46/+14
| | | | | | | * added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers
* Clean up the Login message on UserServer console justCharles Krinke2007-12-161-1/+2
| | | | | before CustomizeResponse is called (this one redundant).
* Reposition 'user profile not found' messages to stop spurious messages ↵Justin Clarke Casey2007-12-162-29/+28
| | | | | | | | caused by other usermanager usage This should stop the regular spurious messages in the grid user console
* Put out a more comprehensible message when user authentication fails than ↵Justin Clarke Casey2007-12-151-43/+20
| | | | the current NullReferenceException based one
* Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee2007-12-154-7/+56
| | | | | | | | subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
* Thanks, Justin, for:Charles Krinke2007-12-141-0/+4
| | | | | | Message to confirm inventory retrieval rather than simply relying on the absence of a not found message.
* Thank you Justin for:Charles Krinke2007-12-141-52/+27
| | | | | 0000188: Clean up of some AssetCache.ProcessAssetQueue() code
* * Just making Create publiclbsa712007-12-141-1/+1
|
* * ARequest changed name to AssetRequest and moved to own file.lbsa712007-12-144-104/+97
| | | | | | * The AssetServerBase is now responsible for dequeueing, the server implementations merely recieves ProcessRequest( AssetRequest req ) * Catchall added around queue processing thread so thread won't abort on exceptions.
* * Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares2007-12-142-3/+9
| | | | calls
* patch from justincc for Mantis #163 - Opening a script in inventory longer ↵Teravus Ovares2007-12-141-11/+36
| | | | than 1500characters can cause looping crash.
* Minor cleanupJeff Ames2007-12-131-5/+4
|
* Implementing updateinventoryfolder: Should now be able to rename folders in ↵Brian McBee2007-12-111-0/+20
| | | | inventory
* added copyright noticesJeff Ames2007-12-114-1/+113
|
* more work on texture downloading.MW2007-12-104-329/+107
| | | | | | | Refractored the TextureDownloadModule (but currently to make debugging easier, it is running as a non shared module, so this results in a instance of this module being created for each region (and a extra thread per region), this will be changed back soon. Removed the old texture handling/sending code from AssetCache. A few other small changes/fixes.
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-1024-44/+44
| | | | notice of doom
* * Added some inter-region comms glue for allowing sims to chat amongst ↵Teravus Ovares2007-12-091-0/+1
| | | | | | | themsevles about an agent behind the agent's back. * Will be using this glue Tomorrow/today to tell other regions what the agent's draw distance is and what region they're actually in so the region can make decisions on what prim to send, if any.
* hackish code to allow emptying of trash. This really should be done on the ↵Brian McBee2007-12-081-1/+21
| | | | | | | | inventory server, and not from the region. Also: it appeared to work the first try, so I have probably done something horribly wrong.
* This patch fixes mantis 105. Basically, it stops the index exception whenSean Dague2007-12-081-3/+12
| | | | | | | | | no root folder is found and it makes the user server wait longer for the inventory server to do its work. From Justin Casey (IBM)
* "Borrowed" the LLSD class from a older version of libsl, so that our LLSD ↵MW2007-12-075-15/+672
| | | | decoding (used by CAPS) works again.
* Updates to LibSL revision 1498. Thanks Johan!Adam Johnson2007-12-073-11/+15
|
* reversing the r2599 patch, as this started causing CreateThread errors for Sean Dague2007-12-061-6/+1
| | | | | | | | | me on Mono 1.2.4, which led to client crashes. I think the Timer.Stop() wasn't doing what was desired on Mono. The Queue refactoring should address the readability issues lbsa71 was working on as soon as I get the merge together.
* * now the throttle timer is stopped whilst processing Queue so that it won't ↵lbsa712007-12-061-1/+6
| | | | | | | | fire twice * started to refactored throttling method * some code convention refactorings
* removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames2007-12-062-4/+4
|
* * More console message fixesAdam Frisby2007-12-042-15/+14
| | | | | * Tagged Verbose("msg",...) as obsolete. Please use Verbose("AREA","msg",...) instead.
* * Removed 12 compiler warnings.Adam Frisby2007-12-041-1/+0
|
* This is a simple patch which just renames an IClientAPI method toSean Dague2007-12-031-1/+1
| | | | | | | | | SendInventoryItemCreateUpdate() in order to reflect the actual packet it sends (UpdateCreateInventoryItem). From Justin Casey (IBM)
* minor meaningless changesJeff Ames2007-12-031-2/+2
|
* Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW2007-12-022-4/+25
| | | | rezzing them in another region.
* Very partial Avatar Appearance (ie, clothes/body parts) "storage". In ↵MW2007-12-022-11/+7
| | | | | | | | standalone mode it will mean that when you log off and log back on ,as long as the region server hasn't been restarted , your avatar will start with wearing the clothes that it wore on log off. In grid mode its even more limited in that wearing/removing clothes/body parts are only stored in the region server instance you are one. so if you are in a different region to your login region (which are on different region server instances), and then change clothes, those changes won't be remembered. So as said, its very limited but is a small step towards having proper appearance persist. Just need to store this data out to a database.
* Fixes a bug that my last commit introduced.MW2007-12-021-1/+1
|
* Some refactoring , mainly on Inventory code. MW2007-12-024-122/+40
|
* New Inventory folder should now be stored to the inventory server/database. ↵MW2007-12-021-1/+8
| | | | This also seems to fix the problem of Body parts not being persisted properly.
* Attempt to fix mantis issue # 73MW2007-12-011-8/+12
|
* Initial working Grid Inventory server. Only been tested on a very small ↵MW2007-12-013-4/+6
| | | | | | | grid, so likely to have problems on a larger grid with more people? To use , both the user server and Inventory server need to be running this latest revision. (older regions should be able to still be used, just the user won't have inventory on them). Also and HERE IS THE BIG BREAK ISSUE, currently, so that the initial inventory details for a user are added to the inventory db , you need to recreate the accounts using the user server "create user" feature. It should be quite easy to manual populate the inventory database instead but I someone else will need to look into that) Also I've only tested using SQLite as the database provider, there is a Mysql inventory provider but I don't know if it works (SQLite is set as default, so you will need to change it in the inventory server config.xml)
* Attempt to fix mantis issue # 65, seems like it is a race condition between ↵MW2007-12-011-4/+7
| | | | two regions trying to add a user to the AssetTransactionManager at the same time. So have placed a lock around the Dictionary add.
* Patch for mantis 0000015: Textures don't display in the objectSean Dague2007-11-302-8/+24
| | | | | | | | | properties window From Justin Casey (IBM)
* return of the inv-lib-root patch from Justin Casey (IBM)Sean Dague2007-11-302-1/+16
| | | | | | | | Should fix libsl login ability. No long breaks my login to test environment.
* * This extends my first hack to clear out the useragent table for that ↵Teravus Ovares2007-11-301-1/+1
| | | | | | | | specific user. * This helps people who have multiple records in their useragent table. * This update should be looked at.. because really what it should be doing is initiating a grid wide logoff.
* * Here's the issue, on log-off, the routine sets up a null useragent member ↵Teravus Ovares2007-11-301-0/+1
| | | | and then tries to save it to the database.. where it was going wrong, is the database had a check to do *nothing* when it got a null useragent. I made it delete the userAgent row. This should be a good enough fix to solve the problem. It still needs to be looked at by a DB guy
* * Temporary fix for 'User already online' issue in standalone mode.Teravus Ovares2007-11-301-0/+5
| | | | | * Revert this once we get a working logoff.
* revert r2510, this seems to break normal logins, at least fromSean Dague2007-11-292-16/+1
| | | | | | Linux clients.
* return an appropriate inv_lib_root, which the libsl folks haveSean Dague2007-11-292-1/+16
| | | | | | | | identified as the reason libsl can't currently connect to OpenSim. Patch from Justin Casey (IBM)
* fixed duplicate login in standalone mode (mostly untested in grid mode)Jeff Ames2007-11-292-4/+3
|
* * Fixed about 7 issues with restarting sims and resolved interRegion comms ↵Teravus Ovares2007-11-291-1/+1
| | | | | | | issues. This includes the issue that MW described this morning. There's a lot of little nit picky changes that make a world of difference.
* * Restaring the sim works fine in grid mode now. Sims announce themselves ↵Teravus Ovares2007-11-281-1/+1
| | | | | | | to their neighbors when they start up. Neighbors get this message and tell their agents that there's a new sim up. * Certain unrecoverable physics based crashes in ODE are now hooked up to the 'restart the sim' routine.
* Fixed an event in the events chain in inter-region communications.Teravus Ovares2007-11-272-0/+3
| | | | | As a consequence, restarting sims in the same process instance now shows them when they come back up in grid mode and standalone mode.
* * Restarting regions with the estate tools works in sandbox mode. I'm still ↵Teravus Ovares2007-11-261-0/+1
| | | | working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.