aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs (unfollow)
Commit message (Expand)AuthorFilesLines
2009-03-25* Changed a recursive BeginRobustReceive loop to a flat while loop to avoid l...lbsa711-38/+33
2009-03-02Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to v...MW1-1/+1
2009-02-12* optimized usings.lbsa711-3/+2
2009-02-11Enforce estate bans on Teleports.diva1-3/+3
2009-02-09From Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague1-3/+3
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-1/+1
2009-01-21* minor: move connection success log message so that it doesn't get printed a...Justin Clarke Casey1-6/+6
2009-01-14* minor: Change around more debugging messagesJustin Clarke Casey1-2/+2
2009-01-14* Do some log tweaking to better see incoming connection success (and failure)Justin Clarke Casey1-10/+6
2009-01-13* minor: Stop friendship termination crashing the client thread if the friend...Justin Clarke Casey1-2/+1
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-4/+2
2008-12-17* Replace manually zeroing with Array.Clear(). Thanks cmickeybJustin Clarke Casey1-4/+1
2008-11-28* Fixes Location == Location, and Location != LocationTeravus Ovares1-2/+2
2008-11-28* The equals override of 'Location' is not working as expected. This caused ...Teravus Ovares1-1/+7
2008-11-18* Added and removed debug information relating to client connectionsAdam Frisby1-0/+3
2008-11-14* Move test scene construction infrastructure methods to a separate class for...Justin Clarke Casey1-1/+1
2008-11-11If the proxy is on, we need to ignore the extra 6 bytes in the packet.Mike Mazur1-0/+1
2008-11-10The region proxy for the load balancer module works again. The incoming proxy...Johan Berntsson1-10/+20
2008-11-07* Fix half of the issue behind the long standing 'UseCircuitCode' packet spam...Teravus Ovares1-0/+2
2008-11-06* refactor: Split BeginRecieve() into BeginReceive() and BeginRobustReceive()Justin Clarke Casey1-10/+18
2008-11-06* Stop passing along epSender explicitly where we are really using the consta...Justin Clarke Casey1-5/+5
2008-11-06* Test to ensure that the udp server stays active after receiving a SocketExc...Justin Clarke Casey1-2/+3
2008-11-05* Properly use the default value if the LindenUDP.ClientStack section exists ...Justin Clarke Casey1-3/+3
2008-11-05* Set default client throttle multiplier to 2 (old value was effectively 8). ...Justin Clarke Casey1-1/+1
2008-11-03* Expose a client_throttle_multiplier setting in OpenSim.ini. This multiplie...Justin Clarke Casey1-1/+1
2008-11-03* Pull client throttle multipler setting out of config source. Not an adjust...Justin Clarke Casey1-1/+10
2008-11-03* minor: don't need to null check config source in clientstack settings since...Justin Clarke Casey1-1/+0
2008-11-03* Use nini to pass config information to the client stack, rather than the Cl...Justin Clarke Casey1-4/+9
2008-11-01* Fix http://opensimulator.org/mantis/view.php?id=2517Justin Clarke Casey1-2/+3
2008-10-31* In the client stack, if the BeginReceive() throws an exception then do prin...Justin Clarke Casey1-54/+49
2008-10-24* Stop creating a circuit if the client fails authentication (i.e. the region...Justin Clarke Casey1-4/+29
2008-10-24* Change AddClient test such that we now successfully authenticateJustin Clarke Casey1-2/+1
2008-10-23* minor: Remove unused public PacketServer variable.Justin Clarke Casey1-8/+2
2008-10-23* Revert to executing existing setup if an added circuit did not already existJustin Clarke Casey1-3/+3
2008-10-23* Refactor LLUDPServer slightly so that unit tests can pass in data synchrono...Justin Clarke Casey1-32/+49
2008-10-19* minor: remove mono warningsJustin Clarke Casey1-1/+1
2008-10-19* Fixed UDP server (again)Teravus Ovares1-3/+14
2008-10-19* Null check before UseCircuitCode Check or the server crashes on packet loss!Teravus Ovares1-1/+1
2008-10-17* Finally, don't worry about doing containment checks on other dictionaries i...Justin Clarke Casey1-4/+2
2008-10-17* Don't worry about trying to populate the other dictionaries if a client's c...Justin Clarke Casey1-13/+22
2008-10-17* close two potential race conditions where a new asynchronous UDP recieve co...Justin Clarke Casey1-69/+53
2008-10-17* Temporarily resume creation of IPEndPoint on every callJustin Clarke Casey1-5/+7
2008-10-17* Instead of creating a new IPEndPoint on every udp packet receive, reuse the...Justin Clarke Casey1-21/+39
2008-10-17* reverse part of a change that accidentally crept in with the last revisionJustin Clarke Casey1-1/+2
2008-10-17* Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290Justin Clarke Casey1-2/+1
2008-10-16* minor: get rid of pointless ipeSenderJustin Clarke Casey1-6/+3
2008-10-12* Small fix for when PacketPool is disabled to prevent it from crashing immed...Adam Frisby1-1/+1
2008-10-12LLUDP Client ViewAdam Frisby1-0/+1
2008-10-09* minor: get rid of an unecessary casting and logic checkJustin Clarke Casey1-10/+5
2008-10-09* refactor: separate process of extracting packet from received data from act...Justin Clarke Casey1-34/+41