aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Agent (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-18fix a info messageUbitUmarov1-1/+1
2019-06-13handle confirmXfer syncUbitUmarov1-3/+3
2019-06-13delay timeout a bitUbitUmarov1-2/+2
2019-06-13minor cleanupUbitUmarov1-45/+39
2019-06-12test...UbitUmarov1-4/+2
2019-06-12add a lockUbitUmarov1-16/+15
2019-06-12still a few more changes to lludp Xfer download for lost udp caseUbitUmarov1-9/+10
2019-06-11a few more changes to lludp Xfer downloadUbitUmarov1-15/+22
2019-06-10a few more changes to lludp Xfer downloadUbitUmarov1-15/+27
2019-06-09test...UbitUmarov1-5/+4
2019-06-09reduce some useless array copiesUbitUmarov1-20/+6
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang7-155/+570
2017-07-28fix typoUbitUmarov1-3/+3
2017-07-28partial mantis 8219; on creating or updating items (animationsets, ↵UbitUmarov1-50/+70
wearables) that reference assets, and user does not have permissions on those, abort and warn, instead of silent invalition of the references to those assets, creating a broken item
2017-05-22 fix IClientIPEndpoint broken by justin long ago.. but stop using itUbitUmarov1-2/+2
except on SceneBanner, later it my be also removed from there and everywhere
2017-02-01Refactor asset handling as per Ubit's suggestionMelanie Thielker1-2/+2
2017-01-30Make negative asset caching actually workMelanie Thielker1-1/+2
Also fixes some merge artefacts in HGAssetBroker where cached assets were requested but not actually used and completely squelch a materials debug message because there is nothing the user can do to fix it anyway.
2017-01-06Restructure god level and permissionsMelanie Thielker1-1/+1
Create a class GodController which controls all aspects of god level, viewer modes and user levels at ScenePresence level.
2017-01-05Massive tab and trailing space cleanupMelanie Thielker6-17/+17
2016-12-29Refactor: Rename IImprovedAssetCache to IAssetCache as the old IAssetCache ↵Melanie Thielker1-3/+3
is long gone.
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel4-10/+50
2016-08-25 why did u used RunInThread? change to RunInThreadPoolUbitUmarov1-1/+1
2016-08-24 dont request a workjob if we can see there is nothing to doUbitUmarov1-12/+18
2016-07-11reduce xfer burst if we are busyUbitUmarov1-3/+7
2016-07-10change Xfermanager file sendingUbitUmarov1-98/+192
2016-07-09kick Xfermanager from heartbeat and expires files based on its timmingUbitUmarov1-9/+57
2016-07-09 add a simple files expire to Xfer to catch some that never got a request ↵UbitUmarov1-7/+25
(opened xfers also need a timeout) (not pretty code, but should not have heavy use)
2016-04-29Allow default permissions from the viewer to be applied to uploaded objects.Melanie Thielker1-1/+1
Make inventory items reflect coorect permissions immediately unstead of after relog
2015-12-04add default eyes to default wearables, and revert previus bad commitUbitUmarov1-2/+1
2015-12-04add other Eyes asset id to xferupload defaultsUbitUmarov1-2/+4
2015-12-01fix a more few typosUbitUmarov1-2/+2
2015-11-30fix a few typosUbitUmarov1-3/+2
2015-11-30add a few more known texture IDsUbitUmarov1-5/+15
2015-09-12 revert validating Library textures. Those need to be on a grid assets or ↵UbitUmarov1-14/+0
will not work anyway
2015-09-12 try to validate textures from library folderUbitUmarov1-0/+14
2015-09-12 send a reply on UpdateInventoryItem with the transactionID viewer sent. ↵UbitUmarov1-1/+3
Protocol seems to have also a callbackID on this, apparently ignored by viewers ( as possible the transactionID )
2015-09-11 put back diva's cache with her recent fix but also avoid duplicated ↵UbitUmarov1-10/+25
InventoryService.UpdateItem call in case of m_uploadState is complete. In that case CompleteItemUpload will do it
2015-09-11Mantis #7720: AssetXferUploader was setting AssetID to UUID.Zero. Before ↵Diva Canto1-5/+7
that wouldn't matter (item would be a terminal object) but with the introduction of the item cache, it matters, because the object in the cache was being modified to have AssetID=UUID.Zero. Also keeping the item cache consistent when item properties change.
2015-09-02seems to compile ( tests comented out)UbitUmarov1-3/+1
2014-11-25Label all threadpool calls being made in core OpenSimulator. This is to add ↵Justin Clark-Casey (justincc)1-1/+1
problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
2014-09-27Also fetch and store old asset for animation setsMelanie Thielker1-2/+4
2014-09-27Reinstate the part of the id theft protection that was lost in a long ago mergeMelanie Thielker1-0/+20
2014-09-25Add a sample use for the validationMelanie Thielker1-0/+16
2014-09-25Extend upload verification to all upload pathsMelanie Thielker1-0/+2
2014-07-21Close streams immediately when we finish using themOren Hurvitz1-1/+5
2014-07-04Small change to my previous commit: not so aggressive on the trigger, please.Diva Canto1-2/+0
2014-07-04Instrument the UDP path of creating assets so that it triggers an asset post ↵Diva Canto1-0/+6
for users with different asset servers
2014-01-19Add J2K decoder routine that converts directly to an image.Robert Adams1-0/+20
2013-10-15Made terrain uploads thread-safeOren Hurvitz1-0/+9
2013-08-03Making the J2KDecoderModule decoder function async. Could this be the cause ↵Diva Canto1-1/+1
of sim freeze? -- HandleRequestImage in LLClientView is now sync, which means that it cannot take too long to complete. However, its execution path may end up in J2KDecoderModule.Decode, which is heavy and could stop the packet processing thread while it's at it.