mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
22 lines
565 B
C++
22 lines
565 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibCore/System.h>
|
|
#include <LibCore/SystemServerTakeover.h>
|
|
#include <LibIPC/ConnectionFromClient.h>
|
|
|
|
namespace IPC {
|
|
|
|
template<typename ConnectionFromClientType>
|
|
ErrorOr<NonnullRefPtr<ConnectionFromClientType>> take_over_accepted_client_from_system_server()
|
|
{
|
|
auto socket = TRY(Core::take_over_socket_from_system_server());
|
|
return IPC::new_client_connection<ConnectionFromClientType>(IPC::Transport(move(socket)));
|
|
}
|
|
|
|
}
|