mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
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/'
28 lines
738 B
C++
28 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();
|
|
}
|