mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 10:40:08 +01:00
We use clang-format for automatic formatting of our source files. Since clang-format is actively maintained software, the actual formatting depends on the used version of clang-format. That is unfortunate and painful, but really unavoidable unless clang-format would be strictly bug-compatible. So the version that we must use is from the current Fedora release, which is also tested by our gitlab-ci. Previously, we were using Fedora 34 with clang-tools-extra-12.0.1-1.fc34.x86_64. As Fedora 35 comes along, we need to update our formatting as Fedora 35 comes with version "13.0.0~rc1-1.fc35". An alternative would be to freeze on version 12, but that has different problems (like, it's cumbersome to rebuild clang 12 on Fedora 35 and it would be cumbersome for our developers which are on Fedora 35 to use a clang that they cannot easily install). The (differently painful) solution is to reformat from time to time, as we switch to a new Fedora (and thus clang) version. Usually we would expect that such a reformatting brings minor changes. But this time, the changes are huge. That is mentioned in the release notes [1] as Makes PointerAligment: Right working with AlignConsecutiveDeclarations. (Fixes https://llvm.org/PR27353) [1] https://releases.llvm.org/13.0.0/tools/clang/docs/ReleaseNotes.html#clang-format
70 lines
2.7 KiB
C
70 lines
2.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2010 - 2017 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_CLIENT_UTILS_H__
|
|
#define __NM_CLIENT_UTILS_H__
|
|
|
|
#include "nm-active-connection.h"
|
|
#include "nm-device.h"
|
|
#include "libnm-core-aux-intern/nm-libnm-core-utils.h"
|
|
|
|
const NMObject **nmc_objects_sort_by_path(const NMObject *const *objs, gssize len);
|
|
|
|
const char *_nmc_string_is_valid(const char *input, const char *const *allowed, GError **error);
|
|
|
|
#define nmc_string_is_valid(input, allowed, error) \
|
|
_nmc_string_is_valid((input), NM_CAST_STRV_CC(allowed), (error))
|
|
|
|
gboolean nmc_string_to_uint(const char *str,
|
|
gboolean range_check,
|
|
unsigned long int min,
|
|
unsigned long int max,
|
|
unsigned long int *value);
|
|
gboolean nmc_string_to_bool(const char *str, gboolean *val_bool, GError **error);
|
|
|
|
typedef enum {
|
|
NMC_STRING_TO_TERNARY_FLAGS_NONE = 0,
|
|
NMC_STRING_TO_TERNARY_FLAGS_IGNORE_FOR_DEFAULT = (1LL << 0),
|
|
} NMCStringToTernaryFlags;
|
|
|
|
gboolean nmc_string_to_ternary_full(const char *str,
|
|
NMCStringToTernaryFlags flags,
|
|
NMTernary *val,
|
|
GError **error);
|
|
|
|
static inline gboolean
|
|
nmc_string_to_ternary(const char *str, NMTernary *val, GError **error)
|
|
{
|
|
return nmc_string_to_ternary_full(str, NMC_STRING_TO_TERNARY_FLAGS_NONE, val, error);
|
|
}
|
|
|
|
gboolean matches(const char *cmd, const char *pattern);
|
|
|
|
/* FIXME: don't expose this function on its own, at least not from this file. */
|
|
const char *nmc_bond_validate_mode(const char *mode, GError **error);
|
|
|
|
const char *nmc_device_state_to_string_with_external(NMDevice *device);
|
|
|
|
const char *nm_active_connection_state_reason_to_string(NMActiveConnectionStateReason reason);
|
|
const char *nmc_device_state_to_string(NMDeviceState state);
|
|
const char *nmc_device_reason_to_string(NMDeviceStateReason reason);
|
|
const char *nmc_device_metered_to_string(NMMetered value);
|
|
|
|
NMActiveConnectionState nmc_activation_get_effective_state(NMActiveConnection *active,
|
|
NMDevice *device,
|
|
const char **reason);
|
|
|
|
const char *nmc_wifi_strength_bars(guint8 strength);
|
|
|
|
const char *nmc_password_subst_char(void);
|
|
|
|
void nmc_print_qrcode(const char *str);
|
|
|
|
GHashTable *nmc_utils_parse_passwd_file(char *contents, gssize *out_error_line, GError **error);
|
|
|
|
GHashTable *
|
|
nmc_utils_read_passwd_file(const char *passwd_file, gssize *out_error_line, GError **error);
|
|
|
|
#endif /* __NM_CLIENT_UTILS_H__ */
|