mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:52:45 +00:00 
			
		
		
		
	 3a71748e5d
			
		
	
	
		3a71748e5d
		
	
	
	
	
		
			
			This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
		
	
			
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			738 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Nicholas Hollett <niax@niax.co.uk>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "ConnectionFromClient.h"
 | |
| #include "Launcher.h"
 | |
| #include <LibCore/ConfigFile.h>
 | |
| #include <LibCore/EventLoop.h>
 | |
| #include <LibCore/System.h>
 | |
| #include <LibIPC/MultiServer.h>
 | |
| #include <LibMain/Main.h>
 | |
| 
 | |
| ErrorOr<int> serenity_main(Main::Arguments)
 | |
| {
 | |
|     Core::EventLoop event_loop;
 | |
|     auto server = TRY(IPC::MultiServer<LaunchServer::ConnectionFromClient>::try_create());
 | |
| 
 | |
|     auto launcher = LaunchServer::Launcher();
 | |
|     launcher.load_handlers();
 | |
|     launcher.load_config(TRY(Core::ConfigFile::open_for_app("LaunchServer")));
 | |
| 
 | |
|     TRY(Core::System::pledge("stdio accept rpath proc exec"));
 | |
| 
 | |
|     return event_loop.exec();
 | |
| }
 |