yuzu/src/core/hle/service/sockets/sfdnsres.h

25 lines
553 B
C
Raw Normal View History

2022-11-05 16:58:44 +04:00
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "core/hle/service/service.h"
namespace Core {
class System;
}
namespace Service::Sockets {
class SFDNSRES final : public ServiceFramework<SFDNSRES> {
public:
explicit SFDNSRES(Core::System& system_);
~SFDNSRES() override;
private:
2023-03-04 12:58:45 +04:00
void GetAddrInfoRequest(HLERequestContext& ctx);
void GetAddrInfoRequestWithOptions(HLERequestContext& ctx);
2022-11-05 16:58:44 +04:00
};
} // namespace Service::Sockets