aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares3-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.
2008-05-30Update svn properties. Formatting cleanup.Jeff Ames1-7/+7
2008-05-29* Caches UUIDName requestsTeravus Ovares1-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.
2008-05-28Formatting cleanup.Jeff Ames2-15/+15
2008-05-27Thank you very much, Xantor for a patch that:Charles Krinke1-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.
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames3-5/+5
2008-05-22* Fix mantis 1325. This is a minor issue where 'show assets' would not work ↵Justin Clarke Casey1-8/+14
fully in the region console
2008-05-22* Minor: Tidy ups and logging tweaks.Justin Clarke Casey1-1/+1
2008-05-20i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2-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
2008-05-20Add copyright notices.Jeff Ames2-0/+54
Fix spelling typo (Thanks ChrisDown for pointing this out)
2008-05-19Thank you kindly, Melanie for a patch that avoids a nullCharles Krinke1-0/+24
ref in inventory give and also now causes items to appear in the correct folders now, no longer in the root folder.
2008-05-19i can haz pantz?Sean Dague1-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.
2008-05-19adding OSHttpRequest and OSHttpResponse which wrap HttpListenerRequest and ↵Dr Scofield1-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.
2008-05-18* Refactor: Eliminate empty if clause from AssetCache.GetAsset()Justin Clarke Casey1-4/+1
2008-05-16* Applying patch in mantis 0001293: [PATCH] Fix a bug that corrupts uploaded ↵Teravus Ovares1-0/+2
assets on disk write from Melane. Thanks Melanie!
2008-05-16* Eliminate occurences of "Got a texture uuid ... with no sender object to ↵Justin Clarke Casey1-1/+1
handle it..." by properly dealing with the situation where a client still has queued texture requests when it logs out
2008-05-16* Cache knowledge in the region server that the asset service has reported ↵Justin Clarke Casey2-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
2008-05-16* Removing unnecessary LLUUID.Zero check from AssetCacheJustin Clarke Casey1-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
2008-05-16Formatting cleanup.Jeff Ames31-539/+539
2008-05-15remove my UserAppearance object, switch all code to useSean Dague2-5/+5
AvatarAppearance instead.
2008-05-14* Minor: Fussy little wording change on inventory service failureJustin Clarke Casey1-1/+1
2008-05-14From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey1-1/+1
Rename SearializableRegionInfo to SerializableRegionInfo (class was already named correctly)
2008-05-14Formatting cleanup.Jeff Ames2-2/+2
2008-05-13* As part of the region registration process, the grid service now requests ↵Justin Clarke Casey1-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
2008-05-12* If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey1-0/+1
startup will now terminate instead of carrying on (and thus burying the error message)
2008-05-10* Experiment in Zerocoding.Teravus Ovares1-1/+3
2008-05-09* Revert caps fetch inventory service back to UDP for nowJustin Clarke Casey1-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.
2008-05-09* Removing polling delay for non-CAPS inventory fetch if the client has not ↵Justin Clarke Casey2-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
2008-05-09From: Michael Osias <mosias@us.ibm.com>Justin Clarke Casey1-0/+20
Stop .net generating ambiguous operator errors when two integers are compared for equality in LSL
2008-05-09* Minor: Insert utility function to format raw xml strings into indented xml ↵Justin Clarke Casey2-4/+7
for debugging purposes
2008-05-09* Restoring some initial inventory lookup polling delays in order to deal ↵Justin Clarke Casey1-2/+2
with situations seen on osgrid
2008-05-08* You can haz more spring cleaning.Adam Frisby1-60/+14
* Eventually this codebase will be clean. >_>
2008-05-08* Reduced sleep durations in a number of files.Adam Frisby1-2/+3
2008-05-07* Increase number of poll attempts an inventory items request will make ↵Justin Clarke Casey1-1/+1
under CAPS
2008-05-04* Refactor: A final root folder special case removal, this time in ↵Justin Clarke Casey1-49/+18
HandleFetchInventoryDescendents[CAPS]
2008-05-04* Refactor: Do the root case removal thing again, this time in ItemReceive()Justin Clarke Casey1-34/+13
2008-05-04* Refactor: Simplify CachedUserInfo.FolderReceive() by removing root folder ↵Justin Clarke Casey1-33/+29
special case
2008-05-04* Simplify CreateFolder() by folding previous special root case into ↵Justin Clarke Casey2-77/+46
FindFolder()
2008-05-03* Add ability to defer item actions for AddItem() and DeleteItem(). This ↵Justin Clarke Casey1-5/+21
won't be useful until we let the client cache (again?)
2008-05-03* Refactor RemoveItem()Justin Clarke Casey2-11/+51
2008-05-03* Refactor: Renaming item and folder tree search methods to have Find*() ↵Justin Clarke Casey3-22/+21
prefixes
2008-05-03* Refactor: Move MoveFolder() and PurgeFolder() into CachedUserInfo (which ↵Justin Clarke Casey2-62/+100
arguably should be split)
2008-05-03* Refactor: move UpdateFolder into CachedUserInfoJustin Clarke Casey2-24/+48
2008-05-03* Make user profile cache service complain if the caller assumes a profile ↵Justin Clarke Casey1-13/+42
exists when in fact it does not
2008-05-03* Refactor: Move bulk of CreateFolder from UserProfileCacheService into ↵Justin Clarke Casey3-73/+115
CachedUserInfo * Remove unused/superseded methods from GridInventoryService
2008-05-03* Refactor: remove redundant userId parameter from UpdateItem() and DeleteItem()Justin Clarke Casey1-4/+4
* Put warning in remove folder method about non implementation (not that this is used anyway - may be legacy)
2008-05-03* Refactor: remove pointless agentId parameter from CachedUserInfo.AddItem()Justin Clarke Casey3-764/+1
* Remove old framework asset transactions files which were region modularized
2008-05-03* For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares1-0/+13
does not regenerate until you're dead!
2008-05-02plumb in connection string to the user database paths. mysql and mssqlSean Dague1-4/+4
just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
2008-05-02minor refactoring. Change getName and GetVersion methods (yes the had ↵Sean Dague1-1/+1
different casings) to Name and Version properties for the User stores.