Reset ProxyClient.RequestCommand

This commit is contained in:
TSR Berry 2024-09-24 15:44:13 +02:00
parent 9ac0393cea
commit 44b81ba59e
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -450,6 +450,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd.Impl
public void Disconnect()
{
ProxyClient.Disconnect();
ProxyClient.RequestCommand = 0;
}
public LinuxError Shutdown(BsdSocketShutdownFlags how)
@ -469,6 +470,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd.Impl
public void Close()
{
ProxyClient.Close();
ProxyClient.RequestCommand = 0;
}
}
}