aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-08* some if inversions and added {}'s for readabilitylbsa711-12/+13
2008-09-08Implement proper persistence of the following prim properties:Melanie Thielker1-0/+7
Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
2008-09-07* Improve login failure handling.Justin Clarke Casey1-2/+0
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey3-37/+93
process easier * documentation
2008-09-07* minor: just minor doc and tidy upJustin Clarke Casey1-3/+23
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares8-407/+403
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-09-06Rolling back #6139 because there is no consensus on it's application.Melanie Thielker1-27/+1
Reverted pending further discussion.
2008-09-06Mantis #624Melanie Thielker1-1/+27
Thank you, openlifegrid, for a patch to move new user connections to thread pool threads. Reworked by me to fit current trunk. I believe that that patch may be beneficial in reducing the cases in which regions become unresponsive and will no longer accept new logins.
2008-09-05Mantis#2104. Thank you kindly, Godfrey for a patch that:Charles Krinke1-3/+3
If the parcel pointed to by the landmark has nothing in the Description field (of the General tab in About Land...), a NullReferenceException is thrown and the client is logged out. I added a check to the calls to Helpers.StringToField() in OpenSim.Region.ClientStack.LindenUDP.SendParcelInfo to avoid this issue.
2008-09-03Mantis #2107Melanie Thielker1-6/+17
Thank you, lulurun, for a patch to fix a possible crash when a received packet contains a quaternion with all members zeroed.
2008-09-03Mantis#2106. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-3/+9
The attached patch fixes connectivety checking of root- and child-agents. If an agent's client isn't sending any packets for some time (not even to StartPingCheck packets), we assume that we lost connection and try to log them out.
2008-08-30* Committed patch in mantis 623Justin Clarke Casey1-14/+3
* Unpatched code certainly looks bizarre - attempts to add a new client if we encountered a failure in processing a packet. No apparant ill effects on a sniff test. * Thanks openlifegrid
2008-08-30* Apply patch in mantis 2083Justin Clarke Casey1-1/+1
* TimeStamp field of the AgentMovementCompletePacket in LLClientView.MoveAgentIntoRegion contained a fixed number. The attached patch changes this to a current timestamp. * Thanks HomerHorwitz
2008-08-28Update svn properties, formatting cleanup.Jeff Ames3-14/+11
2008-08-25Documentation, headers and all the normal stuffTeravus Ovares1-0/+32
2008-08-25* minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey1-1/+1
than displays information directly
2008-08-25* minor: Comment out the remaining unhandled packet messages in ↵Justin Clarke Casey1-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
2008-08-25* zap compilation warningsJustin Clarke Casey2-3/+3
2008-08-25* Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey1-1/+1
region information
2008-08-25Update svn properties.Jeff Ames1-42/+42
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares3-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)
2008-08-24Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker1-1/+48
and the for sale setting doesn't survive a sim restart, but this is most of the plumbing.
2008-08-22* Allow an exception generated in ProcessOutPacket to travel up the stackJustin Clarke Casey1-27/+16
* It is dealt with correctly further up, at which point the user is also notified and the failure recorded as a statistic
2008-08-20Mantis #2003 - thank you, SachaMagne, for a patch that implementsMelanie Thielker1-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.
2008-08-19Packet type exclusion (Mantis #2004)Melanie Thielker1-2/+4
Exclude SimStats packets from ack appending.
2008-08-19Update svn properties, formatting cleanup.Jeff Ames2-5/+5
2008-08-18* It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey1-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.
2008-08-18Change LowpriorityTask to be ThrottleType.Task | ThrottleType.LowPriority to ↵Melanie Thielker2-8/+8
make the flag nature of this value more clear.
2008-08-18Formatting cleanup.Jeff Ames4-50/+50
2008-08-16* Insert a new 'set log level [level] command on the console'Justin Clarke Casey1-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.
2008-08-16Mantis#1970. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-20/+9
This patch improves fetching of inventory from several minutes to a few seconds.
2008-08-16Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-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.
2008-08-16Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2008-08-15Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker1-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.
2008-08-15Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2-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.
2008-08-15Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames1-1/+1
2008-08-14Make the estate owner work. Changes permissions checks to allow theMelanie Thielker1-16/+15
estate owner user the ability to add and remove estate managers, and have EM rights outside of that.
2008-08-14Mantis #1946Melanie Thielker1-1/+1
Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
2008-08-13* minor: make it clear on the console when a client is being logged out ↵Justin Clarke Casey1-9/+12
because that client has not responded to pings
2008-08-12Fix data format for last commitMelanie Thielker1-1/+1
2008-08-12Minor patch: fix an instance where the estate name, as displayed on theMelanie Thielker1-3/+5
Covenant page of the estate dialog, could be shown as the master avatar's name, or even as Test User
2008-08-12* Stop warnings about non existent scene presences/entities being removed on ↵Justin Clarke Casey1-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
2008-08-12Minor formatting cleanup.Jeff Ames1-16/+16
2008-08-10Attempt to address Mantis #1905, #1909Melanie Thielker1-12/+17
Prevent re-sequencing of resent packets. Thanks, ckrinke, for catching that, it is what was happening.
2008-08-09* Remove warningsJustin Clarke Casey1-1/+1
2008-08-09* Added a little more log info in LLUDPServerlbsa711-1/+2
2008-08-09* Shielded against various forms of Malformed data crashes - if there is an ↵lbsa711-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
2008-08-08Patch #9160Melanie Thielker1-2/+2
Refactor proxy encode/decode methods out of the PacketPool into their own class.
2008-08-08De-coupling the IClientAPI interface and ClientManager class from theMike Mazur1-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.