aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Documentation, headers and all the normal stuffTeravus Ovares2008-08-251-0/+32
|
* * minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey2008-08-251-1/+1
| | | | than displays information directly
* * minor: Comment out the remaining unhandled packet messages in ↵Justin Clarke Casey2008-08-251-12/+10
| | | | | | | | LLClientView, except for unidentified packets * These make it more difficult to read the logs, and I don't think they help all that much
* * zap compilation warningsJustin Clarke Casey2008-08-252-3/+3
|
* * Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey2008-08-251-1/+1
| | | | region information
* Update svn properties.Jeff Ames2008-08-251-42/+42
|
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-253-10/+86
| | | | | | | | currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
* Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker2008-08-241-1/+48
| | | | | | | and the for sale setting doesn't survive a sim restart, but this is most of the plumbing.
* * Allow an exception generated in ProcessOutPacket to travel up the stackJustin Clarke Casey2008-08-221-27/+16
| | | | | | * It is dealt with correctly further up, at which point the user is also notified and the failure recorded as a statistic
* Mantis #2003 - thank you, SachaMagne, for a patch that implementsMelanie Thielker2008-08-201-0/+45
| | | | | | | | | | | the first part of gesture persistence. ---------------------------------------------------------- Attachments no longer vanish on walking crossing. Teleport is still problematic, but will now be blocked with message "Inconsistent attachment state" rather than losing the attachment. Detach to be able to TP in that case.
* Packet type exclusion (Mantis #2004)Melanie Thielker2008-08-191-2/+4
| | | | | | Exclude SimStats packets from ack appending.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-192-5/+5
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-5/+9
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Change LowpriorityTask to be ThrottleType.Task | ThrottleType.LowPriority to ↵Melanie Thielker2008-08-182-8/+8
| | | | make the flag nature of this value more clear.
* Formatting cleanup.Jeff Ames2008-08-184-50/+50
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-1/+0
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* Mantis#1970. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-20/+9
| | | | | | This patch improves fetching of inventory from several minutes to a few seconds.
* Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-0/+65
| | | | | | | | | | | | | | | | | | | | | | | Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-161-1/+1
|
* Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker2008-08-151-3/+3
| | | | | | | | the database is now intepreted as follows: low byte = user flags. Next byte, low nibble: Deternines the text (Resident, Lifetime, etc) shown. No customn text support yet.
* Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2008-08-152-2/+10
| | | | | | | | | hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-151-1/+1
|
* Make the estate owner work. Changes permissions checks to allow theMelanie Thielker2008-08-141-16/+15
| | | | | | | estate owner user the ability to add and remove estate managers, and have EM rights outside of that.
* Mantis #1946Melanie Thielker2008-08-141-1/+1
| | | | | | | Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
* * minor: make it clear on the console when a client is being logged out ↵Justin Clarke Casey2008-08-131-9/+12
| | | | because that client has not responded to pings
* Fix data format for last commitMelanie Thielker2008-08-121-1/+1
|
* Minor patch: fix an instance where the estate name, as displayed on theMelanie Thielker2008-08-121-3/+5
| | | | | | | Covenant page of the estate dialog, could be shown as the master avatar's name, or even as Test User
* * Stop warnings about non existent scene presences/entities being removed on ↵Justin Clarke Casey2008-08-121-5/+13
| | | | | | | | | client log off * This is being done by preventing close from being called twice on child agent closure (nres which would have been thrown are being swallowed). * However, it should be possible to do much better cleanup on this code in the future
* Minor formatting cleanup.Jeff Ames2008-08-121-16/+16
|
* Attempt to address Mantis #1905, #1909Melanie Thielker2008-08-101-12/+17
| | | | | | | Prevent re-sequencing of resent packets. Thanks, ckrinke, for catching that, it is what was happening.
* * Remove warningsJustin Clarke Casey2008-08-091-1/+1
|
* * Added a little more log info in LLUDPServerlbsa712008-08-091-1/+2
|
* * Shielded against various forms of Malformed data crashes - if there is an ↵lbsa712008-08-091-119/+65
| | | | | | | | error in packet creation, we just log and ignore it * If there's a Socket.AlreadyInProgress, just silently ignore this one * Tried to refactor the Reset and BeginRecieve logic into something a little more readable, little less duplicated
* Patch #9160Melanie Thielker2008-08-081-2/+2
| | | | | | | Refactor proxy encode/decode methods out of the PacketPool into their own class.
* 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
|