1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00
Atmosphere/stratosphere/ams_mitm/source/set_mitm/setmitm_main.cpp

66 lines
1.8 KiB
C++
Raw Normal View History

2018-10-30 05:18:04 +00:00
/*
2019-04-08 03:00:49 +01:00
* Copyright (c) 2018-2019 Atmosphère-NX
2018-10-30 05:18:04 +00:00
*
* 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 <http://www.gnu.org/licenses/>.
*/
2018-10-30 05:18:04 +00:00
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <malloc.h>
#include <switch.h>
2018-11-08 09:24:40 +00:00
#include <atmosphere.h>
2018-10-30 05:18:04 +00:00
#include <stratosphere.hpp>
2019-01-29 10:29:29 +00:00
#include "setmitm_main.hpp"
2018-10-30 05:18:04 +00:00
#include "setsys_mitm_service.hpp"
#include "setsys_settings_items.hpp"
#include "setsys_firmware_version.hpp"
2018-10-30 05:18:04 +00:00
#include "set_mitm_service.hpp"
2019-01-29 10:29:29 +00:00
#include "../utils.hpp"
2018-10-30 05:18:04 +00:00
struct SetSysManagerOptions {
static const size_t PointerBufferSize = 0x100;
static const size_t MaxDomains = 4;
static const size_t MaxDomainObjects = 0x100;
};
using SetMitmManager = WaitableManager<SetSysManagerOptions>;
2019-01-29 10:29:29 +00:00
void SetMitmMain(void *arg) {
/* Wait for SD to initialize. */
Utils::WaitSdInitialized();
/* Initialize version manager. */
VersionManager::Initialize();
2019-01-29 10:29:29 +00:00
/* Create server manager */
auto server_manager = new SetMitmManager(4);
/* Create set:sys mitm. */
AddMitmServerToManager<SetSysMitmService>(server_manager, "set:sys", 60);
/* Create set mitm. */
AddMitmServerToManager<SetMitmService>(server_manager, "set", 60);
2018-10-30 05:18:04 +00:00
/* Loop forever, servicing our services. */
server_manager->Process();
2018-10-30 05:18:04 +00:00
delete server_manager;
2018-10-30 05:18:04 +00:00
}