diff options
Diffstat (limited to 'libnm-core/nm-setting-private.h')
| -rw-r--r-- | libnm-core/nm-setting-private.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/libnm-core/nm-setting-private.h b/libnm-core/nm-setting-private.h index b423eb5c..c4c0bb48 100644 --- a/libnm-core/nm-setting-private.h +++ b/libnm-core/nm-setting-private.h @@ -1,4 +1,3 @@ -/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -88,7 +87,8 @@ GVariant *_nm_setting_get_deprecated_virtual_interface_name (const NMSettInfoSet guint property_idx, NMConnection *connection, NMSetting *setting, - NMConnectionSerializationFlags flags); + NMConnectionSerializationFlags flags, + const NMConnectionSerializationOptions *options); NMSettingVerifyResult _nm_setting_verify (NMSetting *setting, NMConnection *connection, @@ -107,7 +107,8 @@ gboolean _nm_setting_slave_type_is_valid (const char *slave_type, const char **o GVariant *_nm_setting_to_dbus (NMSetting *setting, NMConnection *connection, - NMConnectionSerializationFlags flags); + NMConnectionSerializationFlags flags, + const NMConnectionSerializationOptions *options); NMSetting *_nm_setting_new_from_dbus (GType setting_type, GVariant *setting_dict, @@ -175,21 +176,21 @@ void _properties_override_add__helper (GArray *properties_override, void _properties_override_add_dbus_only (GArray *properties_override, const char *property_name, const GVariantType *dbus_type, - NMSettingPropertySynthFunc synth_func, - NMSettingPropertySetFunc set_func); + NMSettInfoPropToDBusFcn to_dbus_fcn, + NMSettInfoPropFromDBusFcn from_dbus_fcn); void _properties_override_add_override (GArray *properties_override, GParamSpec *param_spec, const GVariantType *dbus_type, - NMSettingPropertyGetFunc get_func, - NMSettingPropertySetFunc set_func, - NMSettingPropertyNotSetFunc not_set_func); + NMSettInfoPropToDBusFcn to_dbus_fcn, + NMSettInfoPropFromDBusFcn from_dbus_fcn, + NMSettInfoPropMissingFromDBusFcn missing_from_dbus_fcn); void _properties_override_add_transform (GArray *properties_override, GParamSpec *param_spec, const GVariantType *dbus_type, - NMSettingPropertyTransformToFunc to_dbus, - NMSettingPropertyTransformFromFunc from_dbus); + NMSettInfoPropGPropToDBusFcn gprop_to_dbus_fcn, + NMSettInfoPropGPropFromDBusFcn gprop_from_dbus_fcn); /*****************************************************************************/ |