mirror of
https://e.coding.net/circlecloud/SixiBroadcast.git
synced 2025-11-24 23:56:05 +00:00
服务器直接初始化所有数据监听...
This commit is contained in:
@@ -15,7 +15,7 @@ namespace UDPServer
|
|||||||
public partial class Frm_Server : Form
|
public partial class Frm_Server : Form
|
||||||
{
|
{
|
||||||
UdpClient client;
|
UdpClient client;
|
||||||
IPEndPoint endpoint;
|
IPEndPoint endpoint = new IPEndPoint(IPAddress.Any, 0);
|
||||||
Dictionary<string, IPEndPoint> userinfo = new Dictionary<string, IPEndPoint>();
|
Dictionary<string, IPEndPoint> userinfo = new Dictionary<string, IPEndPoint>();
|
||||||
public Frm_Server()
|
public Frm_Server()
|
||||||
{
|
{
|
||||||
@@ -25,7 +25,6 @@ namespace UDPServer
|
|||||||
private void Frm_Server_Load(object sender, EventArgs e)
|
private void Frm_Server_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
client = new UdpClient(new IPEndPoint(IPAddress.Any, 25433));
|
client = new UdpClient(new IPEndPoint(IPAddress.Any, 25433));
|
||||||
endpoint = new IPEndPoint(IPAddress.Any, 0);
|
|
||||||
//启动客户端监听
|
//启动客户端监听
|
||||||
Thread t = new Thread(new ThreadStart(ClientThread));
|
Thread t = new Thread(new ThreadStart(ClientThread));
|
||||||
t.IsBackground = true;
|
t.IsBackground = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user