mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +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.
23 lines
948 B
C
23 lines
948 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "shared-forward.h"
|
|
|
|
bool netif_has_carrier(uint8_t operstate, unsigned flags);
|
|
int net_get_type_string(sd_device *device, uint16_t iftype, char **ret);
|
|
const char* net_get_persistent_name(sd_device *device);
|
|
int net_get_unique_predictable_data(sd_device *device, bool use_sysname, uint64_t *ret);
|
|
int net_get_unique_predictable_data_from_name(const char *name, const sd_id128_t *key, uint64_t *ret);
|
|
int net_verify_hardware_address(
|
|
const char *ifname,
|
|
bool is_static,
|
|
uint16_t iftype,
|
|
const struct hw_addr_data *ib_hw_addr,
|
|
struct hw_addr_data *new_hw_addr);
|
|
int net_generate_mac(
|
|
const char *machine_name,
|
|
struct ether_addr *mac,
|
|
sd_id128_t hash_key,
|
|
uint64_t idx);
|
|
int net_shorten_ifname(char *ifname, bool check_naming_scheme);
|