/* * Copyright (c) 2018-2019 Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include "sf_common.hpp" #include "sf_out.hpp" namespace sts::sf { class IServiceObject{}; class IMitmServiceObject : public IServiceObject { protected: std::shared_ptr<::Service> forward_service; os::ProcessId process_id; ncm::TitleId title_id; public: IMitmServiceObject(std::shared_ptr<::Service> &&s, os::ProcessId p, ncm::TitleId t) : forward_service(std::move(s)), process_id(p), title_id(t) { /* ... */ } static bool ShouldMitm(os::ProcessId process_id, ncm::TitleId title_id); }; template struct ServiceObjectTraits { static_assert(std::is_base_of::value, "ServiceObjectTraits requires ServiceObject"); static constexpr bool IsMitmServiceObject = std::is_base_of::value; }; }