aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-12Add more group notify glueMelanie Thielker1-0/+2
2009-05-12Paving the way for syncing group permissions across a gridMelanie Thielker1-1/+1
2009-05-11* Implements IP and DNS based ban facilities to OpenSim. Adam Frisby1-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
2009-05-09Fox a boo-boo in ExtraParams - a packet with no data blocks could crashMelanie Thielker1-3/+6
the session. Also allow multiple data blocks.
2009-05-07Change avatar updates to be processed the same way object updates are, e.g.Melanie Thielker1-27/+51
packet length check. More changes to come
2009-05-04Add a method to flush the prim update buffers once a frame, since the timerMelanie Thielker1-0/+12
appear to be too slow to be useful, or fail too fire. I may remove the timers as a consequence if this.
2009-05-04Add a parameter that limits the max size of the outbound packet. DefaultedMelanie Thielker1-6/+41
at 1400 since the headers get added to that (32 bytes plus UDP headers)
2009-05-02* Makes ObjectUpdate compressing tweakable in OpenSim.ini - introduces:Adam Frisby1-2/+13
TerseUpdatesPerPacket=10 FullUpdatesPerPacket=14 TerseUpdateRate=10 FullUpdateRate=14
2009-05-02Plumb conifg into the client views. Add config option to configure packetMelanie Thielker1-0/+12
dropping.
2009-05-02Numerous packet improvements.Melanie Thielker1-0/+1
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.
2009-05-02Fix the issue that stopped the packet pool from working. Add a mechanismMelanie Thielker1-8/+5
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.
2009-05-01Improve prim sending by combining multiple prim updates into a single packetMelanie Thielker1-73/+200
2009-04-30Thank you, mpallari, for a patch that correct the behavior of the avatarMelanie Thielker1-3/+1
performance patch. Fixes Mantis #3562
2009-04-30Thank you, mpallari, for a patch that increses efficiency by combiningMelanie Thielker1-12/+63
avatar updates into a single packet. Applied with changes. Fixes Mantis #3136
2009-04-25Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble1-1/+1
version to REST/json statistics reporting
2009-04-22Add copyright headers. Formatting cleanup.Jeff Ames1-5/+5
2009-04-20Change a bad use of a type name as a variable. Thanks, Fly-ManMelanie Thielker1-4/+4
Fixes Mantis #3497
2009-04-20Add PlacesQuery packetMelanie Thielker1-0/+21
2009-04-17Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke1-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.
2009-04-16Correctly flag group owned prims in the land prim listMelanie Thielker1-2/+2
2009-04-16Fix build break and change some groups interfacesMelanie Thielker1-7/+4
2009-04-15Commit the group deeding support, thank you, mcortezMelanie Thielker1-1/+27
2009-04-15minor: Remove some mono compiler warnings. Uncomment code when it's ↵Justin Clarke Casey1-7/+7
actually being used.
2009-04-14Thank you, Fly-Man, for a patch that adds the stub to handle theMelanie Thielker1-0/+11
avatar interests update.
2009-04-10* Patch from RemedyTomm Mantis 3440Teravus Ovares1-3/+4
* Revamps the server side texture pipeline * Textures should load faster, get clogged less, and be less blurry * Minor tweak to ensure the outgoing texture throttle stays private. * Fixes mantis 3440
2009-04-10Handle ObjectSpin* packets to spin physical prims on Ctrl+Shift+Dragnlin1-2/+2
Addresses Mantis #3381 The current implementation works as expected if the object has no rotation or only rotation around the Z axis; you can spin the object left or right (around the world Z axis). It works a little unexpectedly if the object has a non-Z-axis rotation; in this case the body is spun about its local Z axis, not the world Z-axis. (But SL also behaves oddly with a spin on an arbitrarily rotated object.)
2009-04-09* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+0
2009-04-08* Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey1-13/+14
as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
2009-04-08* Fix the remainder of the packets that require sessionId checks.Teravus Ovares1-32/+929
2009-04-08* [SECURITY] Implements additional packet security checks for Object related ↵Adam Frisby1-0/+250
packets. * Note: as with the last commit, this requires additional testing. * This represents 2/8ths of packets now being checked appropriately.
2009-04-08* [SECURITY] Implements a large number of new security checks into ↵Adam Frisby1-0/+269
Scene/Avatar packet processing within ProcessInPacket. * Notes: this requires heavy testing, it may cause new issues where LL have recycled agent block data for non-security purposes. It can be disabled on Line 4421 of LLClientView.cs by changing m_checkPackets to false. * This represents approx 1/8th of the packets being checked.
2009-04-07* Ooops, really put this on the task queue and not textureJustin Clarke Casey1-1/+1
2009-04-07* Put AgentTextureCached? response packet on the task queue rather than the ↵Justin Clarke Casey1-3/+2
wind queue * Thanks to rtomita for pointing this out.
2009-04-07* Apply http://opensimulator.org/mantis/view.php?id=3227Justin Clarke Casey1-0/+13
* Implement "Add To Outfit" * Thanks FredoChaplin
2009-04-04Thanks jonc, for a patch that adds rendering of classic clouds.Homer Horwitz1-4/+35
First part of Mantis #964, the necessary clouds image will follow separately.
2009-04-04Preliminary work to support ObjectSpin* packets when user invokes CTRL / ↵nlin1-4/+41
SHIFT / MOUSE DRAG on a physical object Addresses Mantis #3381
2009-03-31Thanks rtomita for a patch to add a handler for the RemoveInventoryObjects ↵Jeff Ames1-0/+29
packet. (bug #3304)
2009-03-30* minor: remove mono compiler warningsJustin Clarke Casey1-10/+9
2009-03-30Add PickInfoReply packet.Melanie Thielker1-0/+25
Fixes Mantis #3324
2009-03-29Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker1-37/+27
sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
2009-03-29Finish the offline IM module (still needs a server). Add rudimentaryMelanie Thielker1-0/+11
support for the mute list (no functionality yet, but allows the RetrieveInstantMessages event to fire now).
2009-03-28Add mute list request event and dummy responseMelanie Thielker1-2/+26
2009-03-28* Adds AgentUUIDs into the CourseLocationUpdate to improve compatibility ↵Teravus Ovares1-2/+7
with LibOMV based clients. * Modifies the IClientAPI! So client stacks will need to be modified!
2009-03-27Add the events needed for profiles.Melanie Thielker1-0/+55
Fixes Mantis #3324
2009-03-27* This updates LibOMV to the current release 0.6.0 on March 19 2009Teravus Ovares1-2/+2
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.
2009-03-27Remove a hardcoded flow/dependency on the money module from LLCLientViewMelanie Thielker1-39/+17
2009-03-22Send proper creation date on item gives, so objects will appear at the top ofMelanie Thielker1-1/+1
"Objects", not at the bottom
2009-03-14Thanks rtomita for a patch to add handlers for prim scale updates from ↵Jeff Ames1-0/+25
libomv-based clients. (#3291)
2009-03-13Thank you, mcortez, for a patch that fixes a number of long standingMelanie Thielker1-1/+21
issues with the sun module. Fixes Mantis #3295
2009-03-11Thanks rtomita for a patch to fix inventory listings for clients using ↵Jeff Ames1-2/+58
libomv. (#3285)