Example #1
0
        static void Main()
        {
            try
            {
                Console.Write("Initiating Response Interfaces");

                ResponseManager.InitiateResponseInterfaces();

                AccessManager.LoadFileAccessSettings();

                server1 = new Server();
                server2 = new Server();
                server3 = new Server();


                server1.Start(80, 4, serverName);

                server2.Start(250, 4, serverName);

                server3.Start(420, 4, serverName);


                while (true)
                {
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }

            while (true)
            {
            }
        }