gpt4 book ai didi

c# - 在异步套接字中关闭套接字

转载 作者:行者123 更新时间:2023-12-03 12:00:53 24 4
gpt4 key购买 nike

我已经开发了使用异步套接字监听多个客户端的服务器。我使用以下方法来阻止服务器监听客户端。

   //Button 2 -- To Stop Server
private void button2_Click(object sender, EventArgs e)
{
socket.Shutdown(SocketShutdown.Both);
socket.Disconnect(false);
socket.Close();
socket.Dispose();
}

但是问题是,当我重新启动服务器时,它显示使用中的错误套接字连接。那么关闭套接字和停止服务器的正确方法是什么。我需要在按下UI中的按钮后立即停止服务器。

最佳答案

终于我能够解决我的问题了。使用以下代码,我能够干净地关闭服务器:-

 private void button2_Click(object sender, EventArgs e)
{
if (active_clients.Count >= 0)
{
// active client is the list of sockets clients were connected before
//server shutdown.
active_clients.ForEach(delegate(Socket s)
{
try
{
s.Shutdown(SocketShutdown.Both);
}
catch (ObjectDisposedException ex)
{
if (ex.InnerException is SocketException)
{
MessageBox.Show("some message");
return;
}
}
s.Close();

});
active_clients.Clear();
}
try
{
serverSocket.Close();
}
catch (Exception)
{
return;
}
}

关于c# - 在异步套接字中关闭套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18589391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com