Example #1
0
        public static TestLLUDPServer AddUdpServer(Scene scene, IniConfigSource configSource)
        {
            uint port = 0;
            AgentCircuitManager acm = scene.AuthenticateHandler;

            TestLLUDPServer udpServer = new TestLLUDPServer(IPAddress.Any, ref port, 0, false, configSource, acm);

            udpServer.AddScene(scene);

            return(udpServer);
        }