Ejemplo n.º 1
0
        static void Start()
        {
            string blacklist   = getList("C:\\Proxy\\list.conf");
            Proxy  proxyServer = new Proxy("127.0.0.1", 45054, blacklist);

            proxyServer.Listen();
            while (true)
            {
                Socket socket = proxyServer.Accept();
                Thread thread = new Thread(() => proxyServer.ReceiveData(socket));
                thread.Start();
            }
        }