aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * minor: eliminate some mono compiler warningsJustin Clarke Casey2008-10-241-1/+1
|
* * Stop creating a circuit if the client fails authentication (i.e. the ↵Justin Clarke Casey2008-10-241-4/+13
| | | | | | | | | | region server wasn't told that it was coming) * This moves authentication from the client thread (where failure was difficult to detect) to the particular thread handling that packet * I've kept the authentication outside of the crucial clientCircuits lock (though any delay here is probably swamped by the other delays associated with login) * Also added more to the unit test to ensure this doesn't regress
* * Change AddClient test such that we now successfully authenticateJustin Clarke Casey2008-10-241-3/+17
| | | | | | * The fact that the assert passed even when authentication failed reveals a bug in the code that will be corrected soonish
* * minor: refactor out AddUser test setup to common methodJustin Clarke Casey2008-10-241-4/+8
|
* * Reenable assert for the add circuit testJustin Clarke Casey2008-10-231-2/+3
| | | | | | | * This checks that a client circuit is established when the udp server is given a use client circuit code packet * And checks that other circuit codes do not exist
* * Introduce a basic udp circuit test for adding a clientJustin Clarke Casey2008-10-231-5/+28
| | | | | | * Temporarily disabled assert because it just picked up an existing bug. Yay for tests!
* * Refactor LLUDPServer slightly so that unit tests can pass in data ↵Justin Clarke Casey2008-10-231-2/+2
| | | | synchronously. Shouldn't be any functional change
* * Remove mono warningsJustin Clarke Casey2008-10-171-1/+1
|
* * minor: get rid of pointless ipeSenderJustin Clarke Casey2008-10-161-1/+5
|
* * fix windows build break - it helps if one actually puts in using ↵Justin Clarke Casey2008-10-091-1/+3
| | | | statements and spells dlls correctly
* * minor: initialize udp server in unit testJustin Clarke Casey2008-10-091-2/+8
|
* * Create project for LindenUDP ClientStack testsJustin Clarke Casey2008-10-091-0/+44
* No functional tests yet