aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (follow)
Commit message (Collapse)AuthorAgeFilesLines
* De-coupling the IClientAPI interface and ClientManager class from theMike Mazur2008-08-081-4/+7
| | | | | | | libsl/libomv Packet, as other client stacks could use other data types to pass packets around. Starting with InPacket() here, more to come.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-081-3/+3
|
* Remove FunSL client stack as it's under development and often won't compile.Mike Mazur2008-08-088-8455/+0
| | | | | | | This effectively undoes commits 5771 and 5769 as well as parts of the formatting cleanup commits 5774 and 5775.
* Patch #9159Melanie Thielker2008-08-071-16/+27
| | | | | | | Complete the support for dupe tracking. Eliminate one of the "Eternal caches".
* Patch #9158Melanie Thielker2008-08-072-57/+80
| | | | | | | Refactor packet sending into LLPacketHandler. Change packet sequencing and ack lists to ensure packet sequences conform to wire order.
* Minor formatting cleanup.Jeff Ames2008-08-074-28/+28
|
* Rename namespace to FunSL.Mike Mazur2008-08-068-14/+14
|
* Create FunSLUDP client stack. At the moment it's only a copy of the LindenUDPMike Mazur2008-08-068-0/+8455
| | | | | | client stack.
* * Fix probable cause of one of the bugs seen in the osgrid office hours todayJustin Clarke Casey2008-08-051-3/+4
| | | | | | * If a text string is too long we actually need to truncate to 254 chars rather than 255, since the Helpers.StringToField conversion will stick a \0 on the end
* Estate series, patch 9 (#9157)Melanie Thielker2008-08-011-3/+4
| | | | | | | | | Adds the new access semantics and the new flag (allow only age verified) Plumbs in the abuse email address from sim to viewer. The other way around, libomv appears to be lacking support for the data field in the packet. Includes a migration, run prebuild!
* * start tracking viewer session threadsJustin Clarke Casey2008-08-011-3/+4
|
* * minor: log message twiddlingJustin Clarke Casey2008-08-012-6/+5
|
* Thank you, HomerHorwitz, for a patch that implements ↵Melanie Thielker2008-07-311-0/+30
| | | | | | | | llSetCameraParams/llClearCameraParams. Fixes Mantis #1867
* Prevent acks from being appended to viewer effect packets, sinceMelanie Thielker2008-07-291-0/+7
| | | | | | that has been known to cause an exception in libomv ^^
* Prevents Mantis #1829Melanie Thielker2008-07-271-0/+2
| | | | | | Add array size check to packet from viewer to prevent OOB exception
* renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessageDr Scofield2008-07-251-5/+5
|
* Add GetGroupPowers() and a dictionary to hold them to ClientView andMelanie Thielker2008-07-251-0/+8
| | | | | | IClientAPI. No user functionality
* * minor: eliminate warnings from LindenUDPJustin Clarke Casey2008-07-242-18/+18
|
* Thank you, Neopallium, for a patch that addresses ack issues in theMelanie Thielker2008-07-241-1/+3
| | | | | | client stack. Committed with changes, see Mantis #1810 for details.
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-07-241-5/+5
|
* Addresses Mantis #1810Melanie Thielker2008-07-241-8/+12
| | | | | | | | Collapses two locks into one to avoid a situation were a List is cloned under two different locks, resulting in a bad index in .NET code.
* refactor TaskInventoryItem Mask -> Permissions to be consistant with how thingsSean Dague2008-07-231-6/+6
| | | | | | are stored in the db.
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-231-37/+37
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Fix a race causing a buffer overflow under moderate loadMelanie Thielker2008-07-231-1/+1
|
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-234-78/+78
|
* Changed it so the avatar's rotation is now sent as part of a full avatar ↵MW2008-07-231-1/+6
| | | | | | | update. This should fix the wrong rotation on existing sitting avatar when logging in bug.
* Guard against wrong packet types being passed into AddNewClient.Melanie Thielker2008-07-231-0/+2
| | | | | | | Actually, the exception handler seems to be a valid execution path here, this needs some love.
* Make QueuePacket() lock free. Eliminates an unneeded lock()Melanie Thielker2008-07-221-21/+18
|
* Change one packet optimization to cover a case where the resendMelanie Thielker2008-07-221-2/+2
| | | | | | | queue may block indefinitely when a single packet is not acked by the viewer and no others cwfromfor that region are pending.
* Refactor the packet scheduling out of ClientView. Add intelligentMelanie Thielker2008-07-225-812/+782
| | | | | | | | | | resending, timeouts, packet discarding. Add notification event for packet discarding. Add priority scheduling for packet queues. Add outgoing duplicate detection facility. Correct packet sequencing. Make provisions for automatic server side throttle adjustments (comes in next installment)
* Update svn properties. Squash a couple of warnings.Jeff Ames2008-07-221-263/+263
|
* added support so that the packet tracker can resend packets itself as well ↵MW2008-07-211-2/+31
| | | | as triggering a event. Next step to change the terrain packet resending to use these feature.
* added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW2008-07-212-40/+309
| | | | | | | | track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
* * eliminated some warnings and added some const and readonlieslbsa712008-07-212-22/+22
| | | | | | | | | * refactored some member names for readability and ccc (code convention conformance) * took away two refs from Rest.Inventory since * System.IO is part of System * System.Xml.Serialization is part of System.Xml
* Introduce a separate connection string for estates, which defaults to the one giMelanie Thielker2008-07-181-6/+3
| | | | | | ven for the region datastore. Removes the flag to store prim inventories, which are now always stored.
* Patch #9151Melanie Thielker2008-07-181-22/+42
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
* Patch #9150Melanie Thielker2008-07-141-15/+15
| | | | | | Patch 7 of the region patches. Finish off the region parts of the estate dialog. Full user functionality. Terrain textures, heights, water, avatar counts, prim bonus, debug settings and region toggles can now be set from the dialog on a per-region basis. Estate stuff defaults to sane values where there are no defaults, to estate_settings.xml otherwise. Sun still b0rked :(
* Patch #9147Melanie Thielker2008-07-141-1/+1
| | | | | | | Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
* Mantis#1638. Thank you kindly, Salahzar for a patch that:Charles Krinke2008-07-131-1/+3
| | | | | | Addresses an unused field in the asset server but never get filled up. It also makes working the recent items tab in inventory :))))
* Patch #9145 (Mantis #1723)Melanie Thielker2008-07-121-1/+5
| | | | | | Allows direct viewing of library scripts from inventory again
* Patches #9143 and #9144 (Mantis #1723)Melanie Thielker2008-07-121-0/+59
| | | | | | | | | | Changes the permissions module to make scripts permissive only when intended Adds security checks to asset transfers to prevent hacked clients fron requesting script sources. Adds security checks to llClientView to verify all aspects of ownership and permissions for inventory based script retrieval.
* * Guard against a null point passed to RemoveClientCircuit (odd that this ↵Justin Clarke Casey2008-07-111-4/+15
| | | | | | | | | happens at all) * Patch from Kurt Taylor (IBM) in http://opensimulator.org/mantis/view.php?id=1720 * Thanks Kurt!
* Mantis#1005. Thank you kindly, Mircea for a two patches that:Charles Krinke2008-07-111-0/+5
| | | | | Addresses both locale issues and setting the waterHeight correctly.
* corrected the params types on IClientAPI.SendParcelMediaCommand. the command ↵MW2008-07-091-2/+2
| | | | parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
* * Added experimental SendParcelMediaCommand and SendParcelMediaUpdate to ↵lbsa712008-07-081-0/+32
| | | | IClientAPI. These methods have not been tested, but feel free to start wiring them to llParcelMediaCommandList.
* * Changed casing of some archaic methods to conform with code standardslbsa712008-07-081-10/+10
|
* * Moved script packet handlers from 'unimplemented' to 'Script Packets'lbsa712008-07-081-173/+180
|
* mini-warnings-safari, plus cleanup of IUserServices method naming.Dr Scofield2008-07-041-11/+11
|
* * On client login, send only one terrain patch at a time (with pauses) ↵Justin Clarke Casey2008-07-031-9/+25
| | | | | | | | | instead of 4 at a time * Certain terrains which are fine went patches are sent singly cause a libsecondlife failure when patches are sent in batches * See http://opensimulator.org/mantis/view.php?id=1662 for more details
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-281-1/+28
| | | | | not break trunk.