aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* LLUDP Client ViewAdam Frisby2008-10-121-0/+1
| | | | | | | * Experimenting with the PacketPool mechanism. * It's still disabled in the code, however there's now a flag to enable it. * Converted to use Generic Collections vs Hashtables, also now uses a list of 'OK to pool' packets, starting with the high volume PacketAck packet.
* * minor: get rid of an unecessary casting and logic checkJustin Clarke Casey2008-10-091-10/+5
|
* * refactor: separate process of extracting packet from received data from ↵Justin Clarke Casey2008-10-091-34/+41
| | | | actually processing that packet
* * Put in some infrastructure to allow tweaking of packet queue throttle ↵Justin Clarke Casey2008-10-031-6/+10
| | | | | | | | values for the total throttle (the one that throttles all packet output) * Not complete yet
* * EventQueueGet is now working.Teravus Ovares2008-10-031-1/+8
| | | | | | | | * Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
* * refactor: rename interface to put standard I prefix in frontJustin Clarke Casey2008-10-011-1/+1
|
* * Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby2008-09-141-17/+16
|
* Update svn properties, formatting cleanup.Jeff Ames2008-09-091-9/+9
|
* Implement proper persistence of the following prim properties:Melanie Thielker2008-09-081-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.
* * minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey2008-09-071-24/+42
| | | | | | | | process easier * documentation
* * minor: just minor doc and tidy upJustin Clarke Casey2008-09-071-3/+23
|
* Mantis #2133Melanie Thielker2008-09-061-1/+1
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-2/+2
| | | | | | | * 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.
* Rolling back #6139 because there is no consensus on it's application.Melanie Thielker2008-09-061-27/+1
| | | | | | Reverted pending further discussion.
* Mantis #624Melanie Thielker2008-09-061-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.
* * Committed patch in mantis 623Justin Clarke Casey2008-08-301-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
* Formatting cleanup.Jeff Ames2008-08-181-9/+9
|
* * 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.
* * minor: log message twiddlingJustin Clarke Casey2008-08-011-0/+1
|
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-2/+2
|
* 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.
* * 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!
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-271-3/+3
|
* Implemented plugin support for ClientStack, with LindenUDP as the default ↵Johan Berntsson2008-06-201-0/+5
| | | | plugin. This makes it easy for developers to experiment with alternative communication protocols
* Minor formatting cleanup.Jeff Ames2008-06-061-3/+3
|
* 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.
* 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.
* * Extract and boil down necessary texture UUIDs for an archive of the scene ↵Justin Clarke Casey2008-05-261-1/+1
| | | | | | | | prims * no user functionality yet
* Formatting cleanup.Jeff Ames2008-05-161-16/+16
|
* Formatting cleanup.Jeff Ames2008-05-141-1/+1
|
* fixed the dos line endingsSean Dague2008-05-021-508/+508
|
* * More clientstack abstractions - We now only have a single constructor call ↵Adam Frisby2008-05-021-6/+16
| | | | to UDPServer. Going to reduce this with an abstracted constructor in a bit.
* * Commit 2/3 - Please dont attempt to update to this revision until all 3 ↵Adam Frisby2008-05-021-0/+499
are in.