Don't recreate the GDB server socket
This commit is contained in:
parent
917a292256
commit
fc361f82a7
1 changed files with 5 additions and 17 deletions
|
@ -592,15 +592,13 @@ namespace Ryujinx.HLE.Debugger
|
|||
}
|
||||
|
||||
private void SocketReaderThreadMain()
|
||||
{
|
||||
restartListen:
|
||||
try
|
||||
{
|
||||
var endpoint = new IPEndPoint(IPAddress.Any, GdbStubPort);
|
||||
ListenerSocket = new TcpListener(endpoint);
|
||||
ListenerSocket.Start();
|
||||
Logger.Notice.Print(LogClass.GdbStub, $"Currently waiting on {endpoint} for GDB client");
|
||||
|
||||
while (true) {
|
||||
ClientSocket = ListenerSocket.AcceptSocket();
|
||||
ClientSocket.NoDelay = true;
|
||||
ReadStream = new NetworkStream(ClientSocket, System.IO.FileAccess.Read);
|
||||
|
@ -649,16 +647,6 @@ namespace Ryujinx.HLE.Debugger
|
|||
|
||||
eof:
|
||||
Logger.Notice.Print(LogClass.GdbStub, "GDB client lost connection");
|
||||
goto restartListen;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.Error?.Print(LogClass.GdbStub, ex.ToString());
|
||||
Logger.Notice.Print(LogClass.GdbStub, "GDB stub socket closed");
|
||||
if (!_shuttingDown)
|
||||
{
|
||||
goto restartListen;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue