aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-0118-18/+18
| | | | LICENSE.txt.
* This may bring the missing texture back.diva2009-05-281-1/+5
|
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-202-6/+6
|
* trying to fix exception with in LLPacketQueue probably caused byDr Scofield2009-05-191-5/+5
| | | | | missing locks where the queue was modified.
* From: Chris Yeoh <yeohc@au1.ibm.com>Dr Scofield2009-05-181-1/+2
| | | | | | | | | | | | | | | | | We've encountered problems with textures never fully downloading and objects not moving or being deleted (from the client's point of view) even when the bandwidth settings on the client have been set very low. This can happen over reasonably lossy links (eg you're on the other side of the world from the server) as the server retries 3 times and then gives up. Whilst its possible to set ReliableIsImportant, this forces the server to keep retrying no matter what which potentially could lead to problems. This patch allows for the setting of MaxReliableResends explicitly (is set to 3 normally) in OpenSim.ini so if you know you will have clients connecting with poor connections you can set it a bit higher (10-15 works quite well even for very poor connections).
* Removing a superfluous message, just to make bamboo run again.diva2009-05-171-1/+0
|
* Send the owner name, not the client name on SendDialog.Homer Horwitz2009-05-161-3/+4
| | | | | | This modifies IClientAPI.SendDialog slightly. Fixes Mantis #3661.
* Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2009-05-156-15/+119
| | | | | | | | | | | | -- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
* Add more group notify glueMelanie Thielker2009-05-121-0/+2
|
* Paving the way for syncing group permissions across a gridMelanie Thielker2009-05-121-1/+1
|
* * Implements IP and DNS based ban facilities to OpenSim. Adam Frisby2009-05-111-1/+33
| | | | | | | | | | * User interface is ... primitive at best right now. * Loads bans from bans.txt and region ban DB on startup, bans.txt is in the format of one per line. The following explains how they are read; DNS bans are in the form "somewhere.com" will block ANY matching domain (including "betasomewhere.com", "beta.somewhere.com", "somewhere.com.beta") - make sure to be reasonably specific in DNS bans. IP address bans match on first characters, so, "127.0.0.1" will ban only that address, "127.0.1" will ban "127.0.10.0" but "127.0.1." will ban only the "127.0.1.*" network
* * Further testing against core packet issue.Adam Frisby2009-05-101-2/+3
|
* * Attempting to diagnose a core packet issue on Windows/.NET. Adding ↵Adam Frisby2009-05-101-2/+5
| | | | additional locks to see if it fixes the problem.
* Fox a boo-boo in ExtraParams - a packet with no data blocks could crashMelanie Thielker2009-05-091-3/+6
| | | | | | the session. Also allow multiple data blocks.
* instrument most of the tests with a new InMethod function that may help us ↵Sean Dague2009-05-072-0/+11
| | | | | | | figure out where that pesky deadlock is during test runs.
* Change avatar updates to be processed the same way object updates are, e.g.Melanie Thielker2009-05-071-27/+51
| | | | | | packet length check. More changes to come
* Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames2009-05-052-25/+13
|
* * minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey2009-05-041-16/+9
|
* Add a method to flush the prim update buffers once a frame, since the timerMelanie Thielker2009-05-041-0/+12
| | | | | | | appear to be too slow to be useful, or fail too fire. I may remove the timers as a consequence if this.
* Add a parameter that limits the max size of the outbound packet. DefaultedMelanie Thielker2009-05-041-6/+41
| | | | | | at 1400 since the headers get added to that (32 bytes plus UDP headers)
* Make a race condition in packet resending smallerMelanie Thielker2009-05-031-0/+1
|
* * Reversing experimental change in previous rev.Adam Frisby2009-05-021-1/+1
|
* * Experimental: Speeds maximum resend per second from 80 packets to 400. ↵Adam Frisby2009-05-021-1/+1
| | | | (From maximum 117kbit to 585kbit)
* If a packet pooling blows up, fail gracefully instead of disconnectingMelanie Thielker2009-05-021-20/+32
| | | | | | the user
* Handle resends betterMelanie Thielker2009-05-022-1/+6
|
* * Makes ObjectUpdate compressing tweakable in OpenSim.ini - introduces:Adam Frisby2009-05-021-2/+13
| | | | | | | | TerseUpdatesPerPacket=10 FullUpdatesPerPacket=14 TerseUpdateRate=10 FullUpdateRate=14
* Plumb conifg into the client views. Add config option to configure packetMelanie Thielker2009-05-021-0/+12
| | | | | | dropping.
* Move a lock to attempt to cut down packet lossMelanie Thielker2009-05-021-4/+4
|
* Numerous packet improvements.Melanie Thielker2009-05-024-9/+40
| | | | | | | | | | | | | Don't allow packets to be resent before they have actually been sent for the first time. Switch from serializing a packet to get it's length to the LibOMV provided Length property. Fix resend timing. Fix the use of dangling references to Acked packets. Fix the packet handler to play nice with the packet pool. Fix the packet pool. Add data block recycling to the packet pool. Packet pool is now ENABLED by default. Add config option to disable packet and data block reuse. Add ObjectUpdate and ImprovedTerseObjectUpdate to the packets being recycled.
* Fix the issue that stopped the packet pool from working. Add a mechanismMelanie Thielker2009-05-022-9/+10
| | | | | | | | to recycley data blocs within a packet. Recycle the ObjectUpdate* data blocks. Speeds up loading even more. This may mean that the packet pool is now viable.
* Improve prim sending by combining multiple prim updates into a single packetMelanie Thielker2009-05-011-73/+200
|
* Thank you, mpallari, for a patch that correct the behavior of the avatarMelanie Thielker2009-04-301-3/+1
| | | | | | | performance patch. Fixes Mantis #3562
* Thank you, mpallari, for a patch that increses efficiency by combiningMelanie Thielker2009-04-301-12/+63
| | | | | | | | avatar updates into a single packet. Applied with changes. Fixes Mantis #3136
* Catch another j2k decode exception that can be caused by a bad assetMelanie Thielker2009-04-291-29/+34
|
* Fix a crash that will hit when an image asset is truncated in storageMelanie Thielker2009-04-291-1/+11
|
* fixes exception thrown when client session is shutdown whileDr Scofield2009-04-291-0/+2
| | | | | packethandler still active
* Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble2009-04-251-1/+1
| | | | version to REST/json statistics reporting
* cleaning up, fixing warningsDr Scofield2009-04-221-1/+1
|
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-221-5/+5
|
* Change a bad use of a type name as a variable. Thanks, Fly-ManMelanie Thielker2009-04-201-4/+4
| | | | | | Fixes Mantis #3497
* Add PlacesQuery packetMelanie Thielker2009-04-201-0/+21
|
* It is possible that apacket is recieved before the clint stack is fully ready.Melanie Thielker2009-04-201-0/+2
| | | | | | This causes a nullref we need to catch here.
* Thank you kindly, RemedyTomm for a patch that:Charles Krinke2009-04-183-58/+134
| | | | | | | | | | | | Following feedback from 0003440, i've made some changes to the new texture pipeline to optimise performance. The changes are: - Fixed a math issue where a small percentage of images with a certain size (on the packet boundary) would not have their final data delivered. This issue has been present since pre- 0003440 - It was suggested that a discardlevel of -1 and a prioriy of 0 meant to abandon the transfer, this is incorrect and caused some textures to clog. - The texture throttle blocking queue is now only filled in relation to the actual throttle amount.. i.e, on a connection throttled to 300k, only twenty packets will be placed in the queue at a time, on a larger connection it will be much more. This is to balance responsiveness to requests and speed, and to minimise wasted packets. - The engine now keeps track of the number of pending textures, and the stack will not be walked if there's no textures pending, saving CPU. Textures are only considered "pending" when they've already been decoded. - As part of the above, some textures may receive twice as much data per cycle if the number of pending textures is below the cycle threshold, this should prevent loading from slowing down when there are fewer textures in the queue.
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-0/+5
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* Correctly flag group owned prims in the land prim listMelanie Thielker2009-04-161-2/+2
|
* Fix build break and change some groups interfacesMelanie Thielker2009-04-161-7/+4
|
* Commit the group deeding support, thank you, mcortezMelanie Thielker2009-04-151-1/+27
|
* minor: Remove some mono compiler warnings. Uncomment code when it's ↵Justin Clarke Casey2009-04-151-7/+7
| | | | actually being used.
* Another cleanup: Region_Status renamed to RegionStatus, and a usage comment ↵Johan Berntsson2009-04-151-1/+1
| | | | added
* Thank you, Fly-Man, for a patch that adds the stub to handle theMelanie Thielker2009-04-141-0/+11
| | | | | | avatar interests update.