cli: describe usage of the 'connection.metered' property

(cherry picked from commit 04e29df47d)
This commit is contained in:
Beniamino Galvani 2015-09-04 10:45:04 +02:00
parent 7f0269673a
commit 5ec73e70bb

View file

@ -2847,6 +2847,16 @@ nmc_property_connection_set_metered (NMSetting *setting, const char *prop,
return TRUE;
}
static const char *
nmc_property_connection_describe_metered (NMSetting *setting, const char *prop)
{
return _("Enter a value which indicates whether the connection is subject to a data\n"
"quota, usage costs or other limitations. Accepted options are:\n"
"'true','yes','on' to set the connection as metered\n"
"'false','no','off' to set the connection as not metered\n"
"'unknown' to let NetworkManager choose a value using some heuristics\n");
}
/* --- NM_SETTING_802_1X_SETTING_NAME property setter functions --- */
#define DEFINE_SETTER_STR_LIST(def_func, set_func) \
static gboolean \
@ -5431,7 +5441,7 @@ nmc_properties_init (void)
nmc_property_connection_get_metered,
nmc_property_connection_set_metered,
NULL,
NULL,
nmc_property_connection_describe_metered,
NULL,
NULL);