summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/SystemServerTakeover.h
blob: 302de0d560363c6964b3f29c93ea55ca80b42b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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(DeprecatedString const& socket_path = {});

}