aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * minor: comment out confusing DefaultTimeout field in RestClient, which is ↵Justin Clarke Casey2008-06-131-1/+1
| | | | currently not actually used
* * Split the World Map code into a module.Teravus Ovares2008-06-121-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).
* Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke2008-06-113-1/+23
| | | | | | to allow the InventoryServer to work with MSSQL..
* * minor: Properly clear the pushed asset cache statistics where the ↵Justin Clarke Casey2008-06-101-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
* Minor formatting cleanup.Jeff Ames2008-06-061-1/+1
|
* * adding XmppPresenceStanza and deserialization/reification supportDr Scofield2008-06-043-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)
* * fleshing out XMPP entities, adding XmppWriter and XmppSerializerDr Scofield2008-06-046-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.
* provide slightly more sane defaults in the file based asset loaderSean Dague2008-06-021-3/+3
|
* * Committing more unfinished stuff. Nothing significant at the moment. IM ↵Teravus Ovares2008-06-012-0/+15
| | | | related.
* * 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