ladybird/Userland/Services/WebContent/main.cpp

28 lines
950 B
C++
Raw Normal View History

/*
2021-11-23 10:31:08 +01:00
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/EventLoop.h>
#include <LibCore/LocalServer.h>
#include <LibCore/System.h>
#include <LibIPC/ClientConnection.h>
2021-11-23 10:31:08 +01:00
#include <LibMain/Main.h>
#include <WebContent/ClientConnection.h>
2021-11-23 10:31:08 +01:00
ErrorOr<int> serenity_main(Main::Arguments)
{
Core::EventLoop event_loop;
TRY(Core::System::pledge("stdio recvfd sendfd accept unix rpath"));
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/tmp/portal/request", "rw"));
TRY(Core::System::unveil("/tmp/portal/image", "rw"));
TRY(Core::System::unveil("/tmp/portal/websocket", "rw"));
TRY(Core::System::unveil(nullptr, nullptr));
auto socket = TRY(Core::LocalSocket::take_over_accepted_socket_from_system_server());
auto client = IPC::new_client_connection<WebContent::ClientConnection>(move(socket));
return event_loop.exec();
}