aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-313-1/+36
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-301-7/+7
|
* * Caches UUIDName requestsTeravus Ovares2008-05-291-9/+52
| | | | | | * Looks up UUIDNames for script time and colliders in a separate thread. * Hopefully this'll allow you to look at top scripts on a region that has a lot of scripts without crashing your client thread.
* Formatting cleanup.Jeff Ames2008-05-282-15/+15
|
* Thank you very much, Xantor for a patch that:Charles Krinke2008-05-271-1/+34
| | | | | | | | If a request is made for an asset which is not in the cache yet, but has already been requested by something else, queue up the callbacks on that requester instead of swamping the asset server with multiple requests for the same asset.
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-253-5/+5
|
* * Fix mantis 1325. This is a minor issue where 'show assets' would not work ↵Justin Clarke Casey2008-05-221-8/+14
| | | | fully in the region console
* * Minor: Tidy ups and logging tweaks.Justin Clarke Casey2008-05-221-1/+1
|
* i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2008-05-202-4/+12
| | | | | | | | | | | 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
* Add copyright notices.Jeff Ames2008-05-202-0/+54
| | | | | Fix spelling typo (Thanks ChrisDown for pointing this out)
* Thank you kindly, Melanie for a patch that avoids a nullCharles Krinke2008-05-191-0/+24
| | | | | | ref in inventory give and also now causes items to appear in the correct folders now, no longer in the root folder.
* i can haz pantz?Sean Dague2008-05-191-1/+1
| | | | | | | | | | | | | | You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users.
* adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield2008-05-191-1/+3
| | | | | | | | | HttpListenerResponse respectively. enhancing IStreamHandler and IStreamedHandler interfaces so that OSHttp{Request,Response} get passed in, allowing RestHandlers to set response status code, redirections, etc.
* * Refactor: Eliminate empty if clause from AssetCache.GetAsset()Justin Clarke Casey2008-05-181-4/+1
|
* * Applying patch in mantis 0001293: [PATCH] Fix a bug that corrupts uploaded ↵Teravus Ovares2008-05-161-0/+2
| | | | assets on disk write from Melane. Thanks Melanie!
* * Eliminate occurences of "Got a texture uuid ... with no sender object to ↵Justin Clarke Casey2008-05-161-1/+1
| | | | handle it..." by properly dealing with the situation where a client still has queued texture requests when it logs out
* * Cache knowledge in the region server that the asset service has reported ↵Justin Clarke Casey2008-05-162-14/+31
| | | | | | | | an asset to be missing * This prevents repeated requests for the same missing asset to the asset server, hopefully reducing the load a little
* * Removing unnecessary LLUUID.Zero check from AssetCacheJustin Clarke Casey2008-05-161-62/+58
| | | | | | * This revision also includes a very temporary fix for the fact that NREs are received because of a missing avatar apperance in grid mode
* Formatting cleanup.Jeff Ames2008-05-1631-539/+539
|
* remove my UserAppearance object, switch all code to useSean Dague2008-05-152-5/+5
| | | | | | AvatarAppearance instead.
* * Minor: Fussy little wording change on inventory service failureJustin Clarke Casey2008-05-141-1/+1
|
* From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey2008-05-141-1/+1
| | | | | | Rename SearializableRegionInfo to SerializableRegionInfo (class was already named correctly)
* Formatting cleanup.Jeff Ames2008-05-142-2/+2
|
* * As part of the region registration process, the grid service now requests ↵Justin Clarke Casey2008-05-131-9/+9
| | | | | | | | | | | | 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
* * If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey2008-05-121-0/+1
| | | | startup will now terminate instead of carrying on (and thus burying the error message)
* * Experiment in Zerocoding.Teravus Ovares2008-05-101-1/+3
|
* * Revert caps fetch inventory service back to UDP for nowJustin Clarke Casey2008-05-091-2/+14
| | | | | | | * Linden client 1.19.1.4 appears to be happy using UDP for this request again, and Linden's own servers (1.21) don't appear to be supplying the CAPS version currently * This should for now fix the bug where texture selection in the edit window both shows only already open textures, and later stops subsequent inventory requests from working.
* * Removing polling delay for non-CAPS inventory fetch if the client has not ↵Justin Clarke Casey2008-05-092-59/+54
| | | | | | | | yet received data from the inventory service * Replaced instead with the system now used by other requests where the fetch request is placed on a queue and service when the data comes in
* From: Michael Osias <mosias@us.ibm.com>Justin Clarke Casey2008-05-091-0/+20
| | | | | | Stop .net generating ambiguous operator errors when two integers are compared for equality in LSL
* * Minor: Insert utility function to format raw xml strings into indented xml ↵Justin Clarke Casey2008-05-092-4/+7
| | | | for debugging purposes
* * Restoring some initial inventory lookup polling delays in order to deal ↵Justin Clarke Casey2008-05-091-2/+2
| | | | with situations seen on osgrid
* * You can haz more spring cleaning.Adam Frisby2008-05-081-60/+14
| | | | | * Eventually this codebase will be clean. >_>
* * Reduced sleep durations in a number of files.Adam Frisby2008-05-081-2/+3
|
* * Increase number of poll attempts an inventory items request will make ↵Justin Clarke Casey2008-05-071-1/+1
| | | | under CAPS
* * Refactor: A final root folder special case removal, this time in ↵Justin Clarke Casey2008-05-041-49/+18
| | | | HandleFetchInventoryDescendents[CAPS]
* * Refactor: Do the root case removal thing again, this time in ItemReceive()Justin Clarke Casey2008-05-041-34/+13
|
* * Refactor: Simplify CachedUserInfo.FolderReceive() by removing root folder ↵Justin Clarke Casey2008-05-041-33/+29
| | | | special case
* * Simplify CreateFolder() by folding previous special root case into ↵Justin Clarke Casey2008-05-042-77/+46
| | | | FindFolder()
* * Add ability to defer item actions for AddItem() and DeleteItem(). This ↵Justin Clarke Casey2008-05-031-5/+21
| | | | won't be useful until we let the client cache (again?)
* * Refactor RemoveItem()Justin Clarke Casey2008-05-032-11/+51
|
* * Refactor: Renaming item and folder tree search methods to have Find*() ↵Justin Clarke Casey2008-05-033-22/+21
| | | | prefixes
* * Refactor: Move MoveFolder() and PurgeFolder() into CachedUserInfo (which ↵Justin Clarke Casey2008-05-032-62/+100
| | | | arguably should be split)
* * Refactor: move UpdateFolder into CachedUserInfoJustin Clarke Casey2008-05-032-24/+48
|
* * Make user profile cache service complain if the caller assumes a profile ↵Justin Clarke Casey2008-05-031-13/+42
| | | | exists when in fact it does not
* * Refactor: Move bulk of CreateFolder from UserProfileCacheService into ↵Justin Clarke Casey2008-05-033-73/+115
| | | | | | | | CachedUserInfo * Remove unused/superseded methods from GridInventoryService
* * Refactor: remove redundant userId parameter from UpdateItem() and DeleteItem()Justin Clarke Casey2008-05-031-4/+4
| | | | | | * Put warning in remove folder method about non implementation (not that this is used anyway - may be legacy)
* * Refactor: remove pointless agentId parameter from CachedUserInfo.AddItem()Justin Clarke Casey2008-05-033-764/+1
| | | | | | * Remove old framework asset transactions files which were region modularized
* * For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares2008-05-031-0/+13
| | | | does not regenerate until you're dead!
* plumb in connection string to the user database paths. mysql and mssqlSean Dague2008-05-021-4/+4
| | | | | | | just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
* minor refactoring. Change getName and GetVersion methods (yes the had ↵Sean Dague2008-05-021-1/+1
| | | | | | | | different casings) to Name and Version properties for the User stores.