8 lines
158 B
C#
8 lines
158 B
C#
|
namespace Ryujinx.Core.OsHle.Services.Bsd
|
||
|
{
|
||
|
//bsd_errno == (SocketException.ErrorCode - 10000)
|
||
|
public enum BsdError
|
||
|
{
|
||
|
Timeout = 60
|
||
|
}
|
||
|
}
|