mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:08:35 +00:00
b2063be597
* Implement IResolver - GetAddrInfo & GetNameInfo still need to be implemented. * Address comments * Use MakeError
14 lines
227 B
C#
14 lines
227 B
C#
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
|
{
|
|
enum NetDBError
|
|
{
|
|
Internal = -1,
|
|
Success,
|
|
HostNotFound,
|
|
TryAgain,
|
|
NoRecovery,
|
|
NoData,
|
|
NoAddress = NoData,
|
|
}
|
|
}
|