1234567891011121314151617181920212223242526 |
- /*
- * 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/SingleServer.h>
- #include <LibMain/Main.h>
- #include <WebContent/ClientConnection.h>
- 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 client = TRY(IPC::take_over_accepted_client_from_system_server<WebContent::ClientConnection>());
- return event_loop.exec();
- }
|