Exemple #1
0
 public TUpdateInfo(ClientThread client)
 {
     this.client = client;
 }
Exemple #2
0
        public void Start(Delegate startSuccessCallBack)
        {
            if (thread != null && thread.IsAlive)
            {
                return;
            }

            thread = new Thread(new ThreadStart(() =>
            {
                IPAddress ip;
                if (IPAddress.TryParse(main.serverIP, out ip))
                {
                    try
                    {
                        IPEndPoint ipep = new IPEndPoint(IPAddress.Any, main.serverPort); //7920
                        server          = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                        server.Bind(ipep);
                        server.Listen(10);
                        listening = true;
                        startSuccessCallBack?.DynamicInvoke();
                        while (listening)
                        {
                            Socket sok = server.Accept();
                            try
                            {
                                ClientThread client = new ClientThread(this, sok, main);
                                listClient.Add(client);
                                TUpdateInfo info = new TUpdateInfo(client);
                                main.dgUpdate.Dispatcher.Invoke(new Action(() => main.dgUpdateList.Add(info)));
                                client.Start();
                            }
                            catch (Exception ex)
                            {
                                if (ex is SocketException || ex is ObjectDisposedException)
                                {
                                }
                                else
                                {
                                    LogHelper.WriteError(ex, "ServerThread");
                                }
                                sok.Close();
                            }
                        }
                    }
                    catch (Exception ex)
                    {
                        if (ex is SocketException)
                        {
                            SocketException sex = (SocketException)ex;
                            if (sex.ErrorCode == 10004)
                            {
                                return;
                            }
                        }
                        main.Dispatcher.BeginInvoke(
                            new Action(() => MessageBox.Show(this.main, "服务启动失败,请检查端口是否被占用!\r\n错误消息:" + ex.Message, "提示",
                                                             MessageBoxButton.OK, MessageBoxImage.Error)), null);
                    }
                }
                else
                {
                    main.Dispatcher.BeginInvoke(
                        new Action(() => MessageBox.Show(this.main, "服务器IP地址不正确,启动失败!", "提示", MessageBoxButton.OK,
                                                         MessageBoxImage.Stop)), null);
                }
                listening = false;
            }));
            thread.Name         = "ServerThread";
            thread.IsBackground = true;
            thread.Start();
        }