b2063be597
* Implement IResolver - GetAddrInfo & GetNameInfo still need to be implemented. * Address comments * Use MakeError
22 lines
352 B
C#
22 lines
352 B
C#
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
|
{
|
|
enum GaiError
|
|
{
|
|
Success,
|
|
AddressFamily,
|
|
Again,
|
|
BadFlags,
|
|
Fail,
|
|
Family,
|
|
Memory,
|
|
NoData,
|
|
NoName,
|
|
Service,
|
|
SocketType,
|
|
System,
|
|
BadHints,
|
|
Protocol,
|
|
Overflow,
|
|
Max,
|
|
}
|
|
}
|