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
22
Ryujinx.HLE/HOS/Services/Sfdnsres/GaiError.cs
Normal file
22
Ryujinx.HLE/HOS/Services/Sfdnsres/GaiError.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
||||
{
|
||||
enum GaiError
|
||||
{
|
||||
Success,
|
||||
AddressFamily,
|
||||
Again,
|
||||
BadFlags,
|
||||
Fail,
|
||||
Family,
|
||||
Memory,
|
||||
NoData,
|
||||
NoName,
|
||||
Service,
|
||||
SocketType,
|
||||
System,
|
||||
BadHints,
|
||||
Protocol,
|
||||
Overflow,
|
||||
Max,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue