mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-24 05:25:13 +00:00
Instead of wrapping all non-movable members of TransportSocket in OwnPtr to keep it movable, make TransportSocket itself non-movable and wrap it in OwnPtr.
22 lines
571 B
C++
22 lines
571 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>(make<IPC::Transport>(move(socket)));
|
|
}
|
|
|
|
}
|