aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-13* minor: comment out confusing DefaultTimeout field in RestClient, which is ↵Justin Clarke Casey1-1/+1
currently not actually used
2008-06-12* Split the World Map code into a module.Teravus Ovares1-4/+5
* Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke3-1/+23
to allow the InventoryServer to work with MSSQL..
2008-06-10* minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey1-0/+4
clear-assets command is used on the region console * stop waiting for garbage collection when GC total memory used is requested, in case the periodic request of this lags the sim
2008-06-06Minor formatting cleanup.Jeff Ames1-1/+1
2008-06-04* adding XmppPresenceStanza and deserialization/reification supportDr Scofield3-6/+100
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
2008-06-04* fleshing out XMPP entities, adding XmppWriter and XmppSerializerDr Scofield6-17/+315
having spent the last couple of days wrestling with .NET XmlSerializer and trying to get it to do what is required by XMPP (RFC 3920 & 3921) this is the preliminary result of that wrestling (you should see the other guy!): XmppSerializer allows us to serialize Xmpp stanza (and theoretically deserialize [or reify] them), XmppWriter helps avoiding various gratuitous crap added in by off-the-shelf XmlSerializer. this is currently not used anywhere but the plan is to use it for at least an XMPPBridgeModule.
2008-06-02provide slightly more sane defaults in the file based asset loaderSean Dague1-3/+3
2008-06-01* Committing more unfinished stuff. Nothing significant at the moment. IM ↵Teravus Ovares2-0/+15
related.
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