aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-12-18* Add a nasty hack to try and give the HttpServer a few extra lives until we ↵Teravus Ovares1-2/+29
dig more into what's causing it to stop listening.
2008-12-18* Caught unhandled IOException, and outputted it to log.lbsa711-1/+5
2008-12-18* Catch a WebException in the LoadImageURLModuleTeravus Ovares1-33/+40
2008-12-18* Added more articulate logging of HttpServer so we can diagnose issues.Teravus Ovares1-0/+38
2008-12-18This innocuous change in the TextureDownloadModule suddenly made the texture ↵diva1-1/+4
problems (#2855) go away for me. I'm committing it, so that others can test and refute, to make sure I'm not hallucinating.
2008-12-18* Committing an opensim level error message on httpserver. This might help ↵Teravus Ovares1-0/+6
with the eventqueue http server death.
2008-12-17Fix attachment persistence which got broken with some inventoryMelanie Thielker1-1/+6
changes a few revs back.
2008-12-17fix a bug with the Grid REST interface that was returning the classnameSean Dague1-1/+1
in the UUID field instead of the actual UUID because of an implicit use of ToString()
2008-12-17Reapply the packet optimization patch, with changesMelanie Thielker3-57/+42
2008-12-17* minor: Comment out "Informing neighbours" debug message that pops up ↵Justin Clarke Casey1-1/+1
whenever some aspect of the avatar changes. * with Diva's blessing ;)
2008-12-17Revert 7754 and 7755 pending a reworkMelanie Thielker3-47/+59
2008-12-17Stop packets that may be resent from being returned to the packet pool.Melanie Thielker1-1/+8
FWIW
2008-12-17* revert r7724 so that PresenceChildStatus() starts throwing NRE's again Justin Clarke Casey3-4/+12
* apparantly logout code relies on this happening in certain circumstances. Really, the root issue needs to be investigated.
2008-12-17Change the PacketQueue to use the stored size as wellMelanie Thielker1-23/+16
2008-12-17Marry AckData to LLQueItem, and store packet data and length there forMelanie Thielker2-36/+31
use everywhere. Each packet gets serialized only once now in PacketHandler
2008-12-17* remove mono compiler warningsJustin Clarke Casey6-27/+27
* should work - the last compile failure looks like a random glitch...
2008-12-17* minor: Comment out high volume 'Getting MapItems' messagesJustin Clarke Casey1-15/+15
* make worldmap module log tags consistent
2008-12-17Kicking child agents off on the first login after a client crash. The child ↵diva2-1/+25
agents kickoff was missing from when this is run in grid mode. But, worse, turns out that this whole feature of kicking off the user after a crash was entirely missing from standalone mode.
2008-12-17* Only serialize packets once for the length calculation for throttle queues ↵Justin Clarke Casey1-16/+25
rather than twice
2008-12-17Revamp packet handler to smooth out the stream of resent packets.Melanie Thielker1-43/+61
Eliminates the bursting in resends observed in the prior implementation
2008-12-17* Replace manually zeroing with Array.Clear(). Thanks cmickeybJustin Clarke Casey3-9/+4
2008-12-17Mantis #2850Melanie Thielker1-1/+14
Applying the patch to reduce the load caused by the throttle loop even more
2008-12-17* minor: Minor documentation and small minor change on LLPacketThrottle to ↵Justin Clarke Casey1-20/+22
remove some unnecessary lines
2008-12-17* minor: Remove unused AppearanceTableMapper as pointed out by jonc in ↵Justin Clarke Casey2-284/+1
http://opensimulator.org/mantis/view.php?id=2843
2008-12-17* Simply friends code by only sending notifications to a newly logged on ↵Justin Clarke Casey1-20/+23
user for other users who are online. * No need to send offline notifications since the client assumes this (and future clients should be able to do the same).
2008-12-17* Implement 'Save Object Back to My Inventory'. On the Linden client this ↵Justin Clarke Casey12-89/+191
is in the Tools menu available when editing an object * This facility allows you to save changes to an object that you've rezzed into a region back into their original inventory item without having to take a copy of the rezzed object.
2008-12-17* Adding some locks to XEngine's m_PrimObjects which were prone to 'the ↵Teravus Ovares1-23/+34
collection was modified'
2008-12-17Stop users taking a copy of a in world prim that contains inventory items ↵MW1-0/+10
that have no copy permission set.
2008-12-17Added a check to CanDuplicateObject(), to stop duplicating prims that ↵MW1-0/+4
contains inventory items that you don't have permission to copy
2008-12-17Stop owners from duplicating no-copy objects in-worldMelanie Thielker1-0/+7
2008-12-17Add repecting the min and max values back inMelanie Thielker1-0/+12
2008-12-17Remove a major bottleneck in throttling code.Melanie Thielker1-24/+15
2008-12-17Avoid checking the throttle limit for empty queuesMelanie Thielker2-8/+8
2008-12-16Avoid sending DisableSimulator event to the root agent upon logout.diva1-8/+11
2008-12-16Fix script controls for weaponsMelanie Thielker1-10/+23
2008-12-15Attempt at fixing the HG home jump by looking up hyperlink regions before ↵diva2-3/+3
grid-local regions.
2008-12-15More work on moving Xfer file transfer handling code to the Client stack ↵MW2-35/+134
from the various region modules that it is currently in. Still not enabled yet.
2008-12-15Attempt at restoring inventory access after TPs/crossings. RemoveClient in ↵diva4-2/+20
Scene was being too aggressive at nixing the user out of the cache. We're now relying on NeedSceneCacheClear to decide whether to nix it or not. All other mods in other files are for better debugging messages.
2008-12-15* minor: method documentation and miscellaneous tidyJustin Clarke Casey3-35/+45
2008-12-15* Apply http://opensimulator.org/mantis/view.php?id=2775 with small tweaksJustin Clarke Casey11-29/+68
* This pushes an identifier for the OpenSim scene to the physics scene. This allows log messages from the physics scene to identify which OpenSim scene they relate to. * Thanks Gerhard
2008-12-15* minor: Stop presence child status suffering an NRE if the agent uuid given ↵Justin Clarke Casey2-7/+14
is not represent at all
2008-12-15Bug fix in new child agents management. Thanks DigiDaz for helping identify ↵diva4-116/+174
this issue. We need to update all child agents whenever the root agent crosses regions. The update now includes child agents in common neighbours. This is so that those get updated with the seeds of the new child agents that are spawned from the receiving region. This also fixes some timing issues. We need to close child agents from the originating region before we update child agents in the receiving region.
2008-12-15Removed some instances of "<3 OpenSim Developers" (why were they there?) ↵MW1-3/+3
being in alert messages from the LandManagementModile.
2008-12-15Bug fix for Hypergrid. This bug was introduced by the recent TP fixes, and ↵diva1-11/+14
affected the jump back home.
2008-12-14Make scripted item and folder gives pop up a "accept, decline" messageMelanie Thielker2-13/+66
and allow deletion of the just received item.
2008-12-14Color was set twice, first correctly, then incorrectly, in SQLiteRegionData.Homer Horwitz1-2/+0
Removed the second set. Fixes Mantis#2380.
2008-12-14Remove use of time dilation in llGetTimeOfDay, llGetTime and llGetAndResetTime.idb1-3/+3
It is not documented to be applied to llGetTimeOfDay at all and is not appropriate for the other two because dilation does not directly affect script speed in OS. Fixes Mantis #2783 and #2162
2008-12-14* Implements the torque/Rotational Impulse methods in the PhysicsAPI and the ↵Teravus Ovares11-8/+287
ODEPlugin and pipes them to their respective LSL method. * NBody will need to be updated, this is an API change. Torque property and AddAngularForce
2008-12-14Added ATTACH_HUD_* constants fixes Mantis #2823idb1-0/+8
2008-12-14* Added Avatar minimum size in the ODEPlugin and a stern warning about ↵Teravus Ovares1-0/+15
setting the capsule size too low in OpenSim.ini