2018-01-18 14:35:03 -05: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-19 21:41:44 -04:00
|
|
|
namespace Service::Sockets {
|
2018-01-18 14:35:03 -05:00
|
|
|
|
|
|
|
class SFDNSRES final : public ServiceFramework<SFDNSRES> {
|
|
|
|
public:
|
2018-03-25 05:41:00 -04:00
|
|
|
explicit SFDNSRES();
|
2018-01-18 14:35:03 -05:00
|
|
|
~SFDNSRES() = default;
|
|
|
|
|
|
|
|
private:
|
2018-01-30 01:29:47 -05:00
|
|
|
void GetAddrInfo(Kernel::HLERequestContext& ctx);
|
2018-01-18 14:35:03 -05:00
|
|
|
};
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Sockets
|