mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-08 03:08:28 +02:00
Implement IResolver (#442)
* Implement IResolver - GetAddrInfo & GetNameInfo still need to be implemented. * Address comments * Use MakeError
This commit is contained in:
13
Ryujinx.HLE/HOS/Services/Sfdnsres/NetDBError.cs
Normal file
13
Ryujinx.HLE/HOS/Services/Sfdnsres/NetDBError.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
||||
{
|
||||
enum NetDBError
|
||||
{
|
||||
Internal = -1,
|
||||
Success,
|
||||
HostNotFound,
|
||||
TryAgain,
|
||||
NoRecovery,
|
||||
NoData,
|
||||
NoAddress = NoData,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user