mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
21 lines
746 B
C
21 lines
746 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "shared-forward.h"
|
|
|
|
int varlink_connect_networkd(sd_varlink **ret_varlink);
|
|
bool networkd_is_running(void);
|
|
int acquire_bus(sd_bus **ret);
|
|
int link_get_property(
|
|
sd_bus *bus,
|
|
int ifindex,
|
|
sd_bus_error *error,
|
|
sd_bus_message **reply,
|
|
const char *iface,
|
|
const char *propname,
|
|
const char *type);
|
|
|
|
void operational_state_to_color(const char *name, const char *state, const char **on, const char **off);
|
|
void setup_state_to_color(const char *state, const char **on, const char **off);
|
|
void online_state_to_color(const char *state, const char **on, const char **off);
|