using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Sockets;
using System.Net;
using System.Threading;
namespace 客户端
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Thread threadClient = null;//负责监听客户端的连接请求的线程
Socket socketClient = null;//负责监听的套接字
Dictionary<string, Socket> dict = new Dictionary<string, Socket>();