mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-01-10 16:10:06 +00:00
27 lines
625 B
C++
27 lines
625 B
C++
// 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 NSD final : public ServiceFramework<NSD> {
|
|
public:
|
|
explicit NSD(Core::System& system_, const char* name);
|
|
~NSD() override;
|
|
|
|
private:
|
|
void Resolve(HLERequestContext& ctx);
|
|
void ResolveEx(HLERequestContext& ctx);
|
|
void GetEnvironmentIdentifier(HLERequestContext& ctx);
|
|
void GetApplicationServerEnvironmentType(HLERequestContext& ctx);
|
|
};
|
|
|
|
} // namespace Service::Sockets
|