gpt4 book ai didi

c# - 在 Unity 中关闭一个打开的套接字

转载 作者:可可西里 更新时间:2023-11-01 02:49:16 26 4
gpt4 key购买 nike

This is a follow on from this question

经过昨晚的谷歌搜索,我设法找到了一个不错的 TCP 教程,我可以按照它来查找 Ip 地址和端口号上的连接,并显示正在发送的数据。

但是,我有一个问题,我的客户端连接一次,我发送了一条消息并将其显示在调试日志中,但是当我停止应用程序并再次运行它时,Unity 卡住了。我不知道为什么会这样。有人可以看一下这段代码,看看它可能在哪里发生以及我可以做些什么来修复它吗?

我也似乎在收到消息后立即启动连接,这是为什么?服务器可以重新连接,但我希望它在连接后保持连接。

public class TCP : MonoBehaviour 
{
string ip_address = "127.0.0.1";
int port = 22;

Thread listen_thread;
TcpListener tcp_listener;
Thread clientThread;
TcpClient tcp_client;
bool isTrue = true;

// Use this for initialization
void Start ()
{
IPAddress ip_addy = IPAddress.Parse(ip_address);
tcp_listener = new TcpListener(ip_addy, port);
listen_thread = new Thread(new ThreadStart(ListenForClients));
listen_thread.Start();


Debug.Log("start thread");

}

private void ListenForClients()
{
this.tcp_listener.Start();

while(isTrue == true)
{
//blocks until a client has connected to the server
TcpClient client = this.tcp_listener.AcceptTcpClient();

//create a thread to handle communication
//with connected client
clientThread = new Thread(new ParameterizedThreadStart(HandleClientComm));
clientThread.Start(client);


Debug.Log("Got client " + client);

}
}

private void HandleClientComm(object client)
{
tcp_client = (TcpClient)client;
NetworkStream client_stream = tcp_client.GetStream();


byte[] message = new byte[4096];
int bytes_read;

while(isTrue == true)
{
bytes_read = 0;

try
{
//blocks until a client sends a message
bytes_read = client_stream.Read(message, 0, 4096);
//Debug.Log(message);

}
catch (Exception e)
{
//a socket error has occured
Debug.Log(e.Message);
break;
}

if(bytes_read == 0)
{
//client has disconnected
Debug.Log("Disconnected");
tcp_client.Close();
break;
}

ASCIIEncoding encoder = new ASCIIEncoding();
Debug.Log(encoder.GetString(message,0,bytes_read));


}

if(isTrue == false)
{
tcp_client.Close();
Debug.Log("closing tcp client");
}

}

void OnApplicationQuit()
{
try
{
tcp_client.Close();
isTrue = false;
}
catch(Exception e)
{
Debug.Log(e.Message);
}
}

这是我的调试日志的屏幕截图,用于显示发生的情况: enter image description here

更新

更新的代码修复了客户端的踢出问题。当我停止统一应用程序并重新启动它时,卡住问题仍然存在。

进一步更新因此,在进一步试验之后,我发现我的项目实际上并没有卡住。当我第一次启动服务器 (Unity) 应用程序时,一切正常。但是当我关闭它并尝试重新运行服务器时,它会卡住,直到我用客户端连接到它。此时服务器正常工作。

所以我认为我在关闭服务器时并没有关闭打开的套接字。我该怎么做?

最佳答案

您必须关闭正在监听的 TCP 套接字。如果您第一次启动应用程序,TCP 套接字将打开。当您停止应用程序时,TCP 套接字仍然打开并在后台运行。

void OnApplicationQuit()
{
try
{
tcp_client.Close();
isTrue = false;
}
catch(Exception e)
{
Debug.Log(e.Message);
}

// You must close the tcp listener
try
{
tcp_listener.Stop();
isTrue = false;
}
catch(Exception e)
{
Debug.Log(e.Message);
}
}

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

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