aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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 :(
* 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.
* * Various documentation to some black magic parts of LLClientView Teravus Ovares2008-06-281-6/+90
| | | | | * Added IClientAPI.SendTexture stub.
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-273-14/+14
|
* Mantis#1597. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-0/+11
| | | | | | Adds handlers for the reclaim land functionality, plus all needed permissions checks.
* added the flag param to IClientAPI.SendMapBlockMW2008-06-251-4/+4
|
* first part of Requestmapblocks fixes: Adds uint flags param to the ↵MW2008-06-251-1/+1
| | | | OnRequestMapBlocks event (and handler), as when a client sends a map block request it also sends what layer it wants it for 0,1,2. It will always send two requests, one of them being for layer 2 (the overlay layer) and the other one either 0 or 1 depending on the tab that is selected in the client worldmap window. We should also be sending what layer the reply is for in IClientAPI.SendMapBlock (current always set to 0). That will come in next part (most likely at the weekend).
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-211-0/+45
| | | | | | | | World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
* Implemented plugin support for ClientStack, with LindenUDP as the default ↵Johan Berntsson2008-06-202-1/+6
| | | | plugin. This makes it easy for developers to experiment with alternative communication protocols
* Mantis#1543. Thank you kindly, Jonc for a patch that:Charles Krinke2008-06-191-0/+13
| | | | | | Implements terrain bake from Region/Estate dialog and respects estate settings during terraforming
* * Refactors call to OutPacket out of AssetCache and into LLClientViewTeravus Ovares2008-06-181-0/+76
|
* * minor: A few miscellaneous doc comments before I break and start on ↵Justin Clarke Casey2008-06-141-1/+1
| | | | something else
* * Enables maptile display in grid mode for simulators that are not on the ↵Teravus Ovares2008-06-141-0/+1
| | | | | | | | | same instance. * Only generates a new maptile after a refresh interval * Maptile names have the UnixTimeSinceEpoch that they were generated and the regionUUID they're from, so you can know which ones are no longer necessary. * Updates RegionInfo, so backup your /bin/Region/*.xml files.
* * Split the World Map code into a module.Teravus Ovares2008-06-121-11/+36
| | | | | * Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
* *Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen2008-06-111-9/+3
| | | | override the default method of calculating how many prims a parcel can have.
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-101-4/+4
|
* * This wraps the autopilot request to the client's sit response. An ↵Teravus Ovares2008-06-061-4/+55
| | | | | | | interesting, but successful way to do it. * This also takes care of a few error situations that were previously never seen.
* Minor formatting cleanup.Jeff Ames2008-06-061-3/+3
|
* Mantis#1455. Thank you kindly, Mikem for a patch that addressesCharles Krinke2008-06-051-1/+0
| | | | | the client thread terminating when creating a new script.
* * minor: Yet another minor logging message tweak following on from the last ↵Justin Clarke Casey2008-06-051-1/+1
| | | | commit
* * minor: Increase verbosity of "new user request denied" incoming session ↵Justin Clarke Casey2008-06-051-1/+4
| | | | warning for debugging purposes
* * If a client thread crashes, make an attempt to notify the client and clean ↵Justin Clarke Casey2008-06-051-4/+58
| | | | up the resources
* * Start writing out assets metadata file for archiverJustin Clarke Casey2008-06-041-1/+1
| | | | | | * Ignoring it on reload as of yet
* change clientCircuits_reverse to a synchronized hash table. ThisSean Dague2008-06-041-35/+45
| | | | | | | removes a lock on every SendPacketTo call, which was shown to have good performance benefits by the IBM China Research Lab.
* * Start recording abnormal client thread terminationsJustin Clarke Casey2008-06-041-0/+4
|
* * If a ThreadAbortException reaches AuthUser() then let it pass through ↵Justin Clarke Casey2008-06-041-0/+4
| | | | | | | | | unmolested * These are only thrown on client shutdown anyway * This stops the console (harmlessly) spewing stack traces when a client logs off
* * minor: Remove my own stupidity in the last doc comment - it wouldn't ↵Justin Clarke Casey2008-06-031-3/+1
| | | | | | | | actually be all that tricky to try better clean up on a client thread crash. Haven't actually implemented this, though
* * minor: Change comment on last commit. My English - not so good.Justin Clarke Casey2008-06-031-3/+4
|
* * Stop the crash to bash of the entire region server when a client thread ↵Justin Clarke Casey2008-06-031-22/+36
| | | | fails by catching the exception in AuthUser() instead of letting it propogate out of the thread
* temporarily disable the last bit of code as it prevents startup on Sean Dague2008-06-031-1/+2
| | | | | | mono. Need to sort that out with DJ shortly.
* From: Dong Jun Lan <landj@cn.ibm.com>Sean Dague2008-06-031-0/+6
| | | | | | | Set udp flags correctly to prevent "Socket forcibly closed by host" errors.
* * This should fix presence issues.Teravus Ovares2008-06-031-0/+2
|
* * It's probably safe to remove the 'Warning Duplicate packet detected Packet ↵Teravus Ovares2008-06-031-1/+1
| | | | Dropping.' message