mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-10-31 03:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018 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 <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
|  
 | |
| #include <cstdlib>
 | |
| #include <cstdint>
 | |
| #include <cstring>
 | |
| #include <malloc.h>
 | |
| 
 | |
| #include <switch.h>
 | |
| #include <atmosphere.h>
 | |
| #include <stratosphere.hpp>
 | |
| 
 | |
| #include "setmitm_main.hpp"
 | |
| #include "setsys_mitm_service.hpp"
 | |
| #include "setsys_settings_items.hpp"
 | |
| 
 | |
| #include "../utils.hpp"
 | |
| 
 | |
| struct SetSysManagerOptions {
 | |
|     static const size_t PointerBufferSize = 0x100;
 | |
|     static const size_t MaxDomains = 4;
 | |
|     static const size_t MaxDomainObjects = 0x100;
 | |
| };
 | |
| 
 | |
| using SetMitmManager = WaitableManager<SetSysManagerOptions>;
 | |
| 
 | |
| void SetMitmMain(void *arg) {
 | |
|     /* Wait for SD to initialize. */
 | |
|     Utils::WaitSdInitialized();
 | |
|             
 | |
|     /* Create server manager */
 | |
|     auto server_manager = new SetMitmManager(3);
 | |
|     
 | |
|     /* Create set:sys mitm. */
 | |
|     AddMitmServerToManager<SetSysMitmService>(server_manager, "set:sys", 60);
 | |
|     
 | |
|     /* Loop forever, servicing our services. */
 | |
|     server_manager->Process();
 | |
|     
 | |
|     delete server_manager;
 | |
|     
 | |
| }
 | |
| 
 |