Files
ladybird/Libraries/LibIPC/SingleServer.h

22 lines
599 B
C++

/*
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibCore/SystemServerTakeover.h>
#include <LibIPC/ConnectionFromClient.h>
namespace IPC {
template<typename ConnectionFromClientType, typename... Args>
ErrorOr<NonnullRefPtr<ConnectionFromClientType>> take_over_accepted_client_from_system_server(Args&&... args)
{
auto socket = TRY(Core::take_over_socket_from_system_server());
return IPC::new_client_connection<ConnectionFromClientType>(make<IPC::Transport>(move(socket)), forward<Args>(args)...);
}
}