
Historically, nmcli printed all fields during operations like `nmcli connection show "$PROFILE"`. As we supported more and more options, this resulted in a verbose output, of most properties just being the default values. To counter that, we added the '-overview' option. When given, it would hide options that are set at their default. This option was not the default, to preserve established behavior. However, for new options, we can afford to hide them. Add a mechanism, that property getters can mark their value to be hidden. At the moment, there is no way to show these properties. However, we could add a '-verbose' option, with the opposite meaning of '-overview'. Anyway, that does not seem necessary at the moment. Hiding properties from output is only acceptable for new properties (otherwise we badly change behavior), and if the properties are set at their default values (otherwise, we hide important information).
456 lines
18 KiB
C
456 lines
18 KiB
C
/* nmcli - command-line tool to control NetworkManager
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Copyright 2010 - 2018 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_META_SETTING_DESC_H__
|
|
#define __NM_META_SETTING_DESC_H__
|
|
|
|
#include "nm-utils/nm-obj.h"
|
|
#include "nm-meta-setting.h"
|
|
#include "nm-ethtool-utils.h"
|
|
|
|
struct _NMDevice;
|
|
|
|
#define NM_META_TEXT_HIDDEN N_("<hidden>")
|
|
|
|
#define NM_META_TEXT_PROMPT_ADSL_PROTO N_("Protocol")
|
|
#define NM_META_TEXT_PROMPT_ADSL_PROTO_CHOICES "(" NM_SETTING_ADSL_PROTOCOL_PPPOA "/" NM_SETTING_ADSL_PROTOCOL_PPPOE "/" NM_SETTING_ADSL_PROTOCOL_IPOATM ")"
|
|
|
|
#define NM_META_TEXT_PROMPT_ADSL_ENCAP N_("ADSL encapsulation")
|
|
#define NM_META_TEXT_PROMPT_ADSL_ENCAP_CHOICES "(" NM_SETTING_ADSL_ENCAPSULATION_VCMUX "/" NM_SETTING_ADSL_ENCAPSULATION_LLC ") [none]"
|
|
|
|
#define NM_META_TEXT_PROMPT_CON_TYPE N_("Connection type")
|
|
#define NM_META_TEXT_PROMPT_IFNAME N_("Interface name [*]")
|
|
#define NM_META_TEXT_PROMPT_VPN_TYPE N_("VPN type")
|
|
#define NM_META_TEXT_PROMPT_MASTER N_("Master")
|
|
|
|
#define NM_META_TEXT_PROMPT_IB_MODE N_("Transport mode")
|
|
#define NM_META_TEXT_WORD_DATAGRAM "datagram"
|
|
#define NM_META_TEXT_WORD_CONNECTED "connected"
|
|
#define NM_META_TEXT_PROMPT_IB_MODE_CHOICES "(" NM_META_TEXT_WORD_DATAGRAM "/" NM_META_TEXT_WORD_CONNECTED ") [" NM_META_TEXT_WORD_DATAGRAM "]"
|
|
|
|
#define NM_META_TEXT_PROMPT_BT_TYPE N_("Bluetooth type")
|
|
#define NM_META_TEXT_WORD_PANU "panu"
|
|
#define NM_META_TEXT_WORD_NAP "nap"
|
|
#define NM_META_TEXT_WORD_DUN_GSM "dun-gsm"
|
|
#define NM_META_TEXT_WORD_DUN_CDMA "dun-cdma"
|
|
#define NM_META_TEXT_PROMPT_BT_TYPE_CHOICES "(" NM_META_TEXT_WORD_PANU "/" NM_META_TEXT_WORD_NAP "/" NM_META_TEXT_WORD_DUN_GSM "/" NM_META_TEXT_WORD_DUN_CDMA ") [" NM_META_TEXT_WORD_PANU "]"
|
|
|
|
#define NM_META_TEXT_PROMPT_BOND_MODE N_("Bonding mode")
|
|
|
|
#define NM_META_TEXT_PROMPT_BOND_MON_MODE N_("Bonding monitoring mode")
|
|
#define NM_META_TEXT_WORD_MIIMON "miimon"
|
|
#define NM_META_TEXT_WORD_ARP "arp"
|
|
#define NM_META_TEXT_PROMPT_BOND_MON_MODE_CHOICES "(" NM_META_TEXT_WORD_MIIMON "/" NM_META_TEXT_WORD_ARP ") [" NM_META_TEXT_WORD_MIIMON "]"
|
|
|
|
#define NM_META_TEXT_PROMPT_WIFI_MODE N_("Wi-Fi mode")
|
|
#define NM_META_TEXT_WORD_INFRA "infrastructure"
|
|
#define NM_META_TEXT_WORD_AP "ap"
|
|
#define NM_META_TEXT_WORD_ADHOC "adhoc"
|
|
#define NM_META_TEXT_PROMPT_WIFI_MODE_CHOICES "(" NM_META_TEXT_WORD_INFRA "/" NM_META_TEXT_WORD_AP "/" NM_META_TEXT_WORD_ADHOC ") [" NM_META_TEXT_WORD_INFRA "]"
|
|
|
|
#define NM_META_TEXT_PROMPT_TUN_MODE N_("Tun mode")
|
|
#define NM_META_TEXT_WORD_TUN "tun"
|
|
#define NM_META_TEXT_WORD_TAP "tap"
|
|
#define NM_META_TEXT_PROMPT_TUN_MODE_CHOICES "(" NM_META_TEXT_WORD_TUN "/" NM_META_TEXT_WORD_TAP ") [" NM_META_TEXT_WORD_TUN "]"
|
|
|
|
#define NM_META_TEXT_PROMPT_IP_TUNNEL_MODE N_("IP Tunnel mode")
|
|
|
|
#define NM_META_TEXT_PROMPT_MACVLAN_MODE N_("MACVLAN mode")
|
|
|
|
#define NM_META_TEXT_PROMPT_MACSEC_MODE N_("MACsec mode")
|
|
#define NM_META_TEXT_WORD_PSK "psk"
|
|
#define NM_META_TEXT_WORD_EAP "eap"
|
|
#define NM_META_TEXT_PROMPT_MACSEC_MODE_CHOICES "(" NM_META_TEXT_WORD_PSK "/" NM_META_TEXT_WORD_EAP ")"
|
|
|
|
#define NM_META_TEXT_PROMPT_PROXY_METHOD N_("Proxy method")
|
|
#define NM_META_TEXT_WORD_NONE "none"
|
|
#define NM_META_TEXT_WORD_AUTO "auto"
|
|
#define NM_META_TEXT_PROMPT_PROXY_METHOD_CHOICES "(" NM_META_TEXT_WORD_NONE "/" NM_META_TEXT_WORD_AUTO ") [" NM_META_TEXT_WORD_NONE "]"
|
|
|
|
typedef enum {
|
|
NM_META_COLOR_NONE = 0,
|
|
NM_META_COLOR_CONNECTION_ACTIVATED,
|
|
NM_META_COLOR_CONNECTION_ACTIVATING,
|
|
NM_META_COLOR_CONNECTION_DISCONNECTING,
|
|
NM_META_COLOR_CONNECTION_INVISIBLE,
|
|
NM_META_COLOR_CONNECTION_UNKNOWN,
|
|
NM_META_COLOR_CONNECTIVITY_FULL,
|
|
NM_META_COLOR_CONNECTIVITY_LIMITED,
|
|
NM_META_COLOR_CONNECTIVITY_NONE,
|
|
NM_META_COLOR_CONNECTIVITY_PORTAL,
|
|
NM_META_COLOR_CONNECTIVITY_UNKNOWN,
|
|
NM_META_COLOR_DEVICE_ACTIVATED,
|
|
NM_META_COLOR_DEVICE_ACTIVATING,
|
|
NM_META_COLOR_DEVICE_DISCONNECTED,
|
|
NM_META_COLOR_DEVICE_FIRMWARE_MISSING,
|
|
NM_META_COLOR_DEVICE_PLUGIN_MISSING,
|
|
NM_META_COLOR_DEVICE_UNAVAILABLE,
|
|
NM_META_COLOR_DEVICE_UNKNOWN,
|
|
NM_META_COLOR_MANAGER_RUNNING,
|
|
NM_META_COLOR_MANAGER_STARTING,
|
|
NM_META_COLOR_MANAGER_STOPPED,
|
|
NM_META_COLOR_PERMISSION_AUTH,
|
|
NM_META_COLOR_PERMISSION_NO,
|
|
NM_META_COLOR_PERMISSION_UNKNOWN,
|
|
NM_META_COLOR_PERMISSION_YES,
|
|
NM_META_COLOR_PROMPT,
|
|
NM_META_COLOR_STATE_ASLEEP,
|
|
NM_META_COLOR_STATE_CONNECTED_GLOBAL,
|
|
NM_META_COLOR_STATE_CONNECTED_LOCAL,
|
|
NM_META_COLOR_STATE_CONNECTED_SITE,
|
|
NM_META_COLOR_STATE_CONNECTING,
|
|
NM_META_COLOR_STATE_DISCONNECTED,
|
|
NM_META_COLOR_STATE_DISCONNECTING,
|
|
NM_META_COLOR_STATE_UNKNOWN,
|
|
NM_META_COLOR_WIFI_SIGNAL_EXCELLENT,
|
|
NM_META_COLOR_WIFI_SIGNAL_FAIR,
|
|
NM_META_COLOR_WIFI_SIGNAL_GOOD,
|
|
NM_META_COLOR_WIFI_SIGNAL_POOR,
|
|
NM_META_COLOR_WIFI_SIGNAL_UNKNOWN,
|
|
NM_META_COLOR_DISABLED,
|
|
NM_META_COLOR_ENABLED,
|
|
_NM_META_COLOR_NUM
|
|
} NMMetaColor;
|
|
|
|
typedef enum {
|
|
NM_META_ACCESSOR_GET_TYPE_PRETTY,
|
|
NM_META_ACCESSOR_GET_TYPE_PARSABLE,
|
|
NM_META_ACCESSOR_GET_TYPE_COLOR,
|
|
} NMMetaAccessorGetType;
|
|
|
|
typedef enum {
|
|
NM_META_ACCESSOR_SETTING_INIT_TYPE_DEFAULT,
|
|
NM_META_ACCESSOR_SETTING_INIT_TYPE_CLI,
|
|
} NMMetaAccessorSettingInitType;
|
|
|
|
typedef enum {
|
|
NM_META_ACCESSOR_GET_FLAGS_NONE = 0,
|
|
NM_META_ACCESSOR_GET_FLAGS_ACCEPT_STRV = (1LL << 0),
|
|
NM_META_ACCESSOR_GET_FLAGS_SHOW_SECRETS = (1LL << 1),
|
|
} NMMetaAccessorGetFlags;
|
|
|
|
typedef enum {
|
|
NM_META_ACCESSOR_GET_OUT_FLAGS_NONE = 0,
|
|
NM_META_ACCESSOR_GET_OUT_FLAGS_STRV = (1LL << 0),
|
|
|
|
/* the property allows to be hidden, if and only if, it's value is set to the
|
|
* default. This should only be set by new properties, to preserve behavior
|
|
* of old properties, which were always printed. */
|
|
NM_META_ACCESSOR_GET_OUT_FLAGS_HIDE = (1LL << 1),
|
|
} NMMetaAccessorGetOutFlags;
|
|
|
|
typedef enum {
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PRETTY_NUMERIC = (1LL << 0),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PRETTY_NUMERIC_HEX = (1LL << 1),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PRETTY_TEXT = (1LL << 2),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PRETTY_TEXT_L10N = (1LL << 3),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PARSABLE_NUMERIC = (1LL << 4),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PARSABLE_NUMERIC_HEX = (1LL << 5),
|
|
NM_META_PROPERTY_TYP_FLAG_ENUM_GET_PARSABLE_TEXT = (1LL << 6),
|
|
} NMMetaPropertyTypFlags;
|
|
|
|
typedef enum {
|
|
NM_META_PROPERTY_TYPE_MAC_MODE_DEFAULT,
|
|
NM_META_PROPERTY_TYPE_MAC_MODE_CLONED,
|
|
NM_META_PROPERTY_TYPE_MAC_MODE_INFINIBAND,
|
|
NM_META_PROPERTY_TYPE_MAC_MODE_WPAN,
|
|
} NMMetaPropertyTypeMacMode;
|
|
|
|
typedef struct _NMMetaEnvironment NMMetaEnvironment;
|
|
typedef struct _NMMetaType NMMetaType;
|
|
typedef struct _NMMetaAbstractInfo NMMetaAbstractInfo;
|
|
typedef struct _NMMetaSettingInfoEditor NMMetaSettingInfoEditor;
|
|
typedef struct _NMMetaPropertyInfo NMMetaPropertyInfo;
|
|
typedef struct _NMMetaPropertyType NMMetaPropertyType;
|
|
typedef struct _NMMetaPropertyTypData NMMetaPropertyTypData;
|
|
typedef struct _NMMetaOperationContext NMMetaOperationContext;
|
|
typedef struct _NMMetaNestedPropertyInfo NMMetaNestedPropertyInfo;
|
|
typedef struct _NMMetaPropertyTypDataNested NMMetaPropertyTypDataNested;
|
|
|
|
/* this gives some context information for virtual functions.
|
|
* This command actually violates layering, and should be considered
|
|
* a hack. In the future, try to replace its use. */
|
|
struct _NMMetaOperationContext {
|
|
NMConnection *connection;
|
|
};
|
|
|
|
struct _NMMetaPropertyType {
|
|
|
|
/* should return a translated string */
|
|
const char *(*describe_fcn) (const NMMetaPropertyInfo *property_info,
|
|
char **out_to_free);
|
|
|
|
gconstpointer (*get_fcn) (const NMMetaPropertyInfo *property_info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
NMSetting *setting,
|
|
NMMetaAccessorGetType get_type,
|
|
NMMetaAccessorGetFlags get_flags,
|
|
NMMetaAccessorGetOutFlags *out_flags,
|
|
gboolean *out_is_default,
|
|
gpointer *out_to_free);
|
|
gboolean (*set_fcn) (const NMMetaPropertyInfo *property_info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
NMSetting *setting,
|
|
const char *value,
|
|
GError **error);
|
|
gboolean (*remove_fcn) (const NMMetaPropertyInfo *property_info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
NMSetting *setting,
|
|
const char *option,
|
|
guint32 idx,
|
|
GError **error);
|
|
|
|
const char *const*(*values_fcn) (const NMMetaPropertyInfo *property_info,
|
|
char ***out_to_free);
|
|
|
|
const char *const*(*complete_fcn) (const NMMetaPropertyInfo *property_info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
const NMMetaOperationContext *operation_context,
|
|
const char *text,
|
|
char ***out_to_free);
|
|
};
|
|
|
|
struct _NMUtilsEnumValueInfo;
|
|
|
|
typedef struct {
|
|
const char *nick;
|
|
gint64 value;
|
|
} NMMetaUtilsIntValueInfo;
|
|
|
|
struct _NMMetaPropertyTypData {
|
|
union {
|
|
struct {
|
|
gboolean (*fcn) (NMSetting *setting);
|
|
} get_with_default;
|
|
struct {
|
|
GType (*get_gtype) (void);
|
|
int min;
|
|
int max;
|
|
const struct _NMUtilsEnumValueInfo *value_infos_get; /* nicks for get function */
|
|
const struct _NMUtilsEnumValueInfo *value_infos; /* nicks for set function */
|
|
void (*pre_set_notify) (const NMMetaPropertyInfo *property_info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
NMSetting *setting,
|
|
int value);
|
|
} gobject_enum;
|
|
struct {
|
|
gint64 min;
|
|
gint64 max;
|
|
guint base;
|
|
const NMMetaUtilsIntValueInfo *value_infos;
|
|
} gobject_int;
|
|
struct {
|
|
const char *(*validate_fcn) (const char *value, char **out_to_free, GError **error);
|
|
} gobject_string;
|
|
struct {
|
|
guint32 (*get_fcn) (NMSetting *setting);
|
|
} mtu;
|
|
struct {
|
|
NMMetaPropertyTypeMacMode mode;
|
|
} mac;
|
|
struct {
|
|
NMEthtoolID ethtool_id;
|
|
} ethtool;
|
|
} subtype;
|
|
const char *const*values_static;
|
|
const NMMetaPropertyTypDataNested *nested;
|
|
NMMetaPropertyTypFlags typ_flags;
|
|
};
|
|
|
|
typedef enum {
|
|
NM_META_PROPERTY_INF_FLAG_NONE = 0x00,
|
|
NM_META_PROPERTY_INF_FLAG_REQD = 0x01, /* Don't ask to ask. */
|
|
NM_META_PROPERTY_INF_FLAG_DONT_ASK = 0x02, /* Don't ask interactively by default */
|
|
NM_META_PROPERTY_INF_FLAG_MULTI = 0x04, /* Ask multiple times, do an append instead of set. */
|
|
} NMMetaPropertyInfFlags;
|
|
|
|
enum {
|
|
_NM_META_PROPERTY_TYPE_VPN_SERVICE_TYPE = 0,
|
|
_NM_META_PROPERTY_TYPE_CONNECTION_TYPE = 3,
|
|
};
|
|
|
|
#define nm_meta_property_info_connection_type (nm_meta_setting_infos_editor[NM_META_SETTING_TYPE_CONNECTION].properties[_NM_META_PROPERTY_TYPE_CONNECTION_TYPE])
|
|
#define nm_meta_property_info_vpn_service_type (nm_meta_setting_infos_editor[NM_META_SETTING_TYPE_VPN].properties[_NM_META_PROPERTY_TYPE_VPN_SERVICE_TYPE])
|
|
|
|
struct _NMMetaPropertyInfo {
|
|
union {
|
|
NMObjBaseInst parent;
|
|
const NMMetaType *meta_type;
|
|
};
|
|
|
|
const NMMetaSettingInfoEditor *setting_info;
|
|
|
|
const char *property_name;
|
|
|
|
const char *property_alias;
|
|
|
|
NMMetaPropertyInfFlags inf_flags;
|
|
bool is_secret:1;
|
|
|
|
bool is_cli_option:1;
|
|
|
|
const char *prompt;
|
|
|
|
const char *def_hint;
|
|
|
|
const char *describe_doc;
|
|
|
|
/* a non-translated but translatable static description (marked with N_()). */
|
|
const char *describe_message;
|
|
|
|
const NMMetaPropertyType *property_type;
|
|
const NMMetaPropertyTypData *property_typ_data;
|
|
};
|
|
|
|
typedef struct _NMMetaSettingValidPartItem {
|
|
const NMMetaSettingInfoEditor *setting_info;
|
|
bool mandatory;
|
|
} NMMetaSettingValidPartItem;
|
|
|
|
struct _NMMetaSettingInfoEditor {
|
|
union {
|
|
NMObjBaseInst parent;
|
|
const NMMetaType *meta_type;
|
|
};
|
|
const NMMetaSettingInfo *general;
|
|
const char *alias;
|
|
const char *pretty_name;
|
|
const NMMetaPropertyInfo *const*properties;
|
|
guint properties_num;
|
|
|
|
/* a NMConnection has a main type (connection.type), which is a
|
|
* main NMSetting instance. Depending on the type, a connection
|
|
* may have a list of other allowed settings.
|
|
*
|
|
* For example, a connection of type "vlan" may have settings
|
|
* of type "connection", "vlan", and "wired".
|
|
*
|
|
* Some setting types a not a main type (NMSettingProxy). They
|
|
* don't have valid_settings but are usually referenced by other
|
|
* settings to be valid for them. */
|
|
const NMMetaSettingValidPartItem *const*valid_parts;
|
|
|
|
void (*setting_init_fcn) (const NMMetaSettingInfoEditor *setting_info,
|
|
NMSetting *setting,
|
|
NMMetaAccessorSettingInitType init_type);
|
|
};
|
|
|
|
struct _NMMetaType {
|
|
NMObjBaseClass parent;
|
|
const char *type_name;
|
|
const char *(*get_name) (const NMMetaAbstractInfo *abstract_info,
|
|
gboolean for_header);
|
|
const NMMetaAbstractInfo *const*(*get_nested) (const NMMetaAbstractInfo *abstract_info,
|
|
guint *out_len,
|
|
gpointer *out_to_free);
|
|
gconstpointer (*get_fcn) (const NMMetaAbstractInfo *info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
gpointer target,
|
|
gpointer target_data,
|
|
NMMetaAccessorGetType get_type,
|
|
NMMetaAccessorGetFlags get_flags,
|
|
NMMetaAccessorGetOutFlags *out_flags,
|
|
gboolean *out_is_defalt,
|
|
gpointer *out_to_free);
|
|
const char *const*(*complete_fcn) (const NMMetaAbstractInfo *info,
|
|
const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
const NMMetaOperationContext *operation_context,
|
|
const char *text,
|
|
char ***out_to_free);
|
|
};
|
|
|
|
struct _NMMetaAbstractInfo {
|
|
union {
|
|
NMObjBaseInst parent;
|
|
const NMMetaType *meta_type;
|
|
};
|
|
};
|
|
|
|
extern const NMMetaType nm_meta_type_setting_info_editor;
|
|
extern const NMMetaType nm_meta_type_property_info;
|
|
|
|
extern const NMMetaSettingInfoEditor nm_meta_setting_infos_editor[_NM_META_SETTING_TYPE_NUM];
|
|
|
|
extern const NMMetaSettingValidPartItem *const nm_meta_setting_info_valid_parts_default[];
|
|
|
|
const NMMetaSettingValidPartItem *const*nm_meta_setting_info_valid_parts_for_slave_type (const char *slave_type, const char **out_slave_name);
|
|
|
|
/*****************************************************************************/
|
|
|
|
typedef enum {
|
|
NM_META_ENV_WARN_LEVEL_INFO,
|
|
NM_META_ENV_WARN_LEVEL_WARN,
|
|
} NMMetaEnvWarnLevel;
|
|
|
|
/* the settings-meta data is supposed to be independent of an actual client
|
|
* implementation. Hence, there is a need for hooks to the meta-data.
|
|
* The meta-data handlers may call back to the enviroment with certain
|
|
* actions. */
|
|
struct _NMMetaEnvironment {
|
|
|
|
void (*warn_fcn) (const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
NMMetaEnvWarnLevel warn_level,
|
|
const char *fmt_l10n, /* the untranslated format string, but it is marked for translation using N_(). */
|
|
va_list ap);
|
|
|
|
struct _NMDevice *const*(*get_nm_devices) (const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
guint *out_len);
|
|
|
|
struct _NMRemoteConnection *const*(*get_nm_connections) (const NMMetaEnvironment *environment,
|
|
gpointer environment_user_data,
|
|
guint *out_len);
|
|
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* NMSettingBond is special in that it has nested properties.
|
|
* We will add API to proper handle such types (Bond, VPN, User),
|
|
* but for now just expose the type info directly. */
|
|
|
|
extern const NMMetaType nm_meta_type_nested_property_info;
|
|
|
|
struct _NMMetaNestedPropertyInfo {
|
|
union {
|
|
const NMMetaType *meta_type;
|
|
NMMetaPropertyInfo base;
|
|
};
|
|
const NMMetaPropertyInfo *parent_info;
|
|
};
|
|
|
|
struct _NMMetaPropertyTypDataNested {
|
|
const NMMetaNestedPropertyInfo *nested;
|
|
guint nested_len;
|
|
};
|
|
|
|
const NMMetaPropertyTypDataNested nm_meta_property_typ_data_bond;
|
|
|
|
/*****************************************************************************/
|
|
|
|
#endif /* __NM_META_SETTING_DESC_H__ */
|