Implement IResolver (#442)
* Implement IResolver - GetAddrInfo & GetNameInfo still need to be implemented. * Address comments * Use MakeError
This commit is contained in:
parent
d5c0de8362
commit
b2063be597
3 changed files with 414 additions and 1 deletions
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,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue