2018-01-18 19:35:03 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Sockets {
|
2018-01-18 19:35:03 +00:00
|
|
|
|
|
|
|
class SFDNSRES final : public ServiceFramework<SFDNSRES> {
|
|
|
|
public:
|
2018-03-25 09:41:00 +00:00
|
|
|
explicit SFDNSRES();
|
2018-01-18 19:35:03 +00:00
|
|
|
~SFDNSRES() = default;
|
|
|
|
|
|
|
|
private:
|
2018-01-30 06:29:47 +00:00
|
|
|
void GetAddrInfo(Kernel::HLERequestContext& ctx);
|
2018-01-18 19:35:03 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Sockets
|