mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 17:21:02 +00:00
16 lines
291 B
C
16 lines
291 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, sin-ack <sin-ack@protonmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibCore/Stream.h>
|
||
|
|
|
||
|
|
namespace Core {
|
||
|
|
|
||
|
|
ErrorOr<NonnullOwnPtr<Core::Stream::LocalSocket>> take_over_socket_from_system_server(String const& socket_path = {});
|
||
|
|
|
||
|
|
}
|