2019-09-10 11:19:01 +02:00
|
|
|
// SPDX-License-Identifier: LGPL-2.1+
|
2018-03-09 10:51:49 +01:00
|
|
|
/*
|
2019-10-01 09:20:35 +02:00
|
|
|
* Copyright (C) 2018 Lubomir Rintel <lkundrak@v3.sk>
|
2018-03-09 10:51:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "nm-default.h"
|
|
|
|
|
|
|
|
|
|
#include "nm-setting-wpan.h"
|
|
|
|
|
|
|
|
|
|
#include "nm-connection-private.h"
|
|
|
|
|
#include "nm-setting-connection.h"
|
|
|
|
|
#include "nm-setting-private.h"
|
|
|
|
|
#include "nm-utils-private.h"
|
|
|
|
|
|
2019-01-11 08:32:54 +01:00
|
|
|
/**
|
|
|
|
|
* SECTION:nm-setting-wpan
|
|
|
|
|
* @short_description: Describes connection properties for IEEE 802.15.4 (WPAN) MAC
|
|
|
|
|
*
|
|
|
|
|
* The #NMSettingWpan object is a #NMSetting subclass that describes properties
|
|
|
|
|
* necessary for configuring IEEE 802.15.4 (WPAN) MAC layer devices.
|
|
|
|
|
**/
|
|
|
|
|
|
2018-09-19 19:04:49 +02:00
|
|
|
/* Ideally we'll be able to get these from a public header. */
|
2018-03-09 10:51:49 +01:00
|
|
|
#ifndef IEEE802154_ADDR_LEN
|
2020-09-28 16:03:33 +02:00
|
|
|
#define IEEE802154_ADDR_LEN 8
|
2018-03-09 10:51:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
2018-09-19 19:04:49 +02:00
|
|
|
#ifndef IEEE802154_MAX_PAGE
|
2020-09-28 16:03:33 +02:00
|
|
|
#define IEEE802154_MAX_PAGE 31
|
2018-09-19 19:04:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef IEEE802154_MAX_CHANNEL
|
2020-09-28 16:03:33 +02:00
|
|
|
#define IEEE802154_MAX_CHANNEL 26
|
2018-09-19 19:04:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
2019-01-11 08:32:54 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
NM_GOBJECT_PROPERTIES_DEFINE_BASE(PROP_MAC_ADDRESS,
|
|
|
|
|
PROP_PAN_ID,
|
|
|
|
|
PROP_SHORT_ADDRESS,
|
|
|
|
|
PROP_PAGE,
|
|
|
|
|
PROP_CHANNEL, );
|
2018-03-09 10:51:49 +01:00
|
|
|
|
|
|
|
|
typedef struct {
|
2020-09-28 16:03:33 +02:00
|
|
|
char * mac_address;
|
|
|
|
|
guint16 pan_id;
|
|
|
|
|
guint16 short_address;
|
|
|
|
|
gint16 page;
|
|
|
|
|
gint16 channel;
|
2018-03-09 10:51:49 +01:00
|
|
|
} NMSettingWpanPrivate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* NMSettingWpan:
|
|
|
|
|
*
|
|
|
|
|
* IEEE 802.15.4 (WPAN) MAC Settings
|
|
|
|
|
*/
|
|
|
|
|
struct _NMSettingWpan {
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSetting parent;
|
2018-03-09 10:51:49 +01:00
|
|
|
};
|
|
|
|
|
|
2018-06-29 22:31:36 +02:00
|
|
|
struct _NMSettingWpanClass {
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingClass parent;
|
2018-06-29 22:31:36 +02:00
|
|
|
};
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
G_DEFINE_TYPE(NMSettingWpan, nm_setting_wpan, NM_TYPE_SETTING)
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
#define NM_SETTING_WPAN_GET_PRIVATE(o) \
|
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((o), NM_TYPE_SETTING_WPAN, NMSettingWpanPrivate))
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2019-01-11 08:32:54 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2018-03-09 10:51:49 +01:00
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_get_mac_address:
|
|
|
|
|
* @setting: the #NMSettingWpan
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #NMSettingWpan:mac-address property of the setting
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.14
|
|
|
|
|
**/
|
|
|
|
|
const char *
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_get_mac_address(NMSettingWpan *setting)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_return_val_if_fail(NM_IS_SETTING_WPAN(setting), NULL);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return NM_SETTING_WPAN_GET_PRIVATE(setting)->mac_address;
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_get_pan_id:
|
|
|
|
|
* @setting: the #NMSettingWpan
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #NMSettingWpan:pan-id property of the setting
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.14
|
|
|
|
|
**/
|
|
|
|
|
guint16
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_get_pan_id(NMSettingWpan *setting)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_return_val_if_fail(NM_IS_SETTING_WPAN(setting), G_MAXUINT16);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return NM_SETTING_WPAN_GET_PRIVATE(setting)->pan_id;
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_get_short_address:
|
|
|
|
|
* @setting: the #NMSettingWpan
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #NMSettingWpan:short-address property of the setting
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.14
|
|
|
|
|
**/
|
|
|
|
|
guint16
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_get_short_address(NMSettingWpan *setting)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_return_val_if_fail(NM_IS_SETTING_WPAN(setting), G_MAXUINT16);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return NM_SETTING_WPAN_GET_PRIVATE(setting)->short_address;
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-19 19:04:49 +02:00
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_get_page:
|
|
|
|
|
* @setting: the #NMSettingWpan
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #NMSettingWpan:page property of the setting
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.16
|
|
|
|
|
**/
|
|
|
|
|
gint16
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_get_page(NMSettingWpan *setting)
|
2018-09-19 19:04:49 +02:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_return_val_if_fail(NM_IS_SETTING_WPAN(setting), NM_SETTING_WPAN_PAGE_DEFAULT);
|
2018-09-19 19:04:49 +02:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return NM_SETTING_WPAN_GET_PRIVATE(setting)->page;
|
2018-09-19 19:04:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_get_channel:
|
|
|
|
|
* @setting: the #NMSettingWpan
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #NMSettingWpan:channel property of the setting
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.16
|
|
|
|
|
**/
|
|
|
|
|
gint16
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_get_channel(NMSettingWpan *setting)
|
2018-09-19 19:04:49 +02:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_return_val_if_fail(NM_IS_SETTING_WPAN(setting), NM_SETTING_WPAN_CHANNEL_DEFAULT);
|
2018-09-19 19:04:49 +02:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return NM_SETTING_WPAN_GET_PRIVATE(setting)->channel;
|
2018-09-19 19:04:49 +02:00
|
|
|
}
|
|
|
|
|
|
2018-03-09 10:51:49 +01:00
|
|
|
static gboolean
|
2020-09-28 16:03:33 +02:00
|
|
|
verify(NMSetting *setting, NMConnection *connection, GError **error)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingWpanPrivate *priv = NM_SETTING_WPAN_GET_PRIVATE(setting);
|
|
|
|
|
|
|
|
|
|
if (priv->mac_address && !nm_utils_hwaddr_valid(priv->mac_address, IEEE802154_ADDR_LEN)) {
|
|
|
|
|
g_set_error_literal(error,
|
|
|
|
|
NM_CONNECTION_ERROR,
|
|
|
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("property is invalid"));
|
|
|
|
|
g_prefix_error(error, "%s.%s: ", NM_SETTING_WPAN_SETTING_NAME, NM_SETTING_WPAN_MAC_ADDRESS);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((priv->page == NM_SETTING_WPAN_PAGE_DEFAULT)
|
|
|
|
|
!= (priv->channel == NM_SETTING_WPAN_CHANNEL_DEFAULT)) {
|
|
|
|
|
g_set_error_literal(error,
|
|
|
|
|
NM_CONNECTION_ERROR,
|
|
|
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("page must be defined along with a channel"));
|
|
|
|
|
g_prefix_error(error, "%s.%s: ", NM_SETTING_WPAN_SETTING_NAME, NM_SETTING_WPAN_PAGE);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (priv->page < NM_SETTING_WPAN_PAGE_DEFAULT || priv->page > IEEE802154_MAX_PAGE) {
|
|
|
|
|
g_set_error(error,
|
|
|
|
|
NM_CONNECTION_ERROR,
|
|
|
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("page must be between %d and %d"),
|
|
|
|
|
NM_SETTING_WPAN_PAGE_DEFAULT,
|
|
|
|
|
IEEE802154_MAX_PAGE);
|
|
|
|
|
g_prefix_error(error, "%s.%s: ", NM_SETTING_WPAN_SETTING_NAME, NM_SETTING_WPAN_PAGE);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (priv->channel < NM_SETTING_WPAN_CHANNEL_DEFAULT || priv->channel > IEEE802154_MAX_CHANNEL) {
|
|
|
|
|
g_set_error(error,
|
|
|
|
|
NM_CONNECTION_ERROR,
|
|
|
|
|
NM_CONNECTION_ERROR_INVALID_PROPERTY,
|
|
|
|
|
_("channel must not be between %d and %d"),
|
|
|
|
|
NM_SETTING_WPAN_CHANNEL_DEFAULT,
|
|
|
|
|
IEEE802154_MAX_CHANNEL);
|
|
|
|
|
g_prefix_error(error, "%s.%s: ", NM_SETTING_WPAN_SETTING_NAME, NM_SETTING_WPAN_CHANNEL);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-11 08:32:54 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2018-03-09 10:51:49 +01:00
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingWpan *setting = NM_SETTING_WPAN(object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_MAC_ADDRESS:
|
|
|
|
|
g_value_set_string(value, nm_setting_wpan_get_mac_address(setting));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_PAN_ID:
|
|
|
|
|
g_value_set_uint(value, nm_setting_wpan_get_pan_id(setting));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_SHORT_ADDRESS:
|
|
|
|
|
g_value_set_uint(value, nm_setting_wpan_get_short_address(setting));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_PAGE:
|
|
|
|
|
g_value_set_int(value, nm_setting_wpan_get_page(setting));
|
|
|
|
|
break;
|
|
|
|
|
case PROP_CHANNEL:
|
|
|
|
|
g_value_set_int(value, nm_setting_wpan_get_channel(setting));
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingWpanPrivate *priv = NM_SETTING_WPAN_GET_PRIVATE(object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case PROP_MAC_ADDRESS:
|
|
|
|
|
g_free(priv->mac_address);
|
|
|
|
|
priv->mac_address =
|
|
|
|
|
_nm_utils_hwaddr_canonical_or_invalid(g_value_get_string(value), IEEE802154_ADDR_LEN);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_PAN_ID:
|
|
|
|
|
priv->pan_id = g_value_get_uint(value);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_SHORT_ADDRESS:
|
|
|
|
|
priv->short_address = g_value_get_uint(value);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_PAGE:
|
|
|
|
|
priv->page = g_value_get_int(value);
|
|
|
|
|
break;
|
|
|
|
|
case PROP_CHANNEL:
|
|
|
|
|
priv->channel = g_value_get_int(value);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-11 08:32:54 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2018-03-09 10:51:49 +01:00
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_init(NMSettingWpan *setting)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingWpanPrivate *priv = NM_SETTING_WPAN_GET_PRIVATE(setting);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
priv->pan_id = G_MAXUINT16;
|
|
|
|
|
priv->short_address = G_MAXUINT16;
|
|
|
|
|
priv->page = NM_SETTING_WPAN_PAGE_DEFAULT;
|
|
|
|
|
priv->channel = NM_SETTING_WPAN_CHANNEL_DEFAULT;
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* nm_setting_wpan_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #NMSettingWpan object with default values.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer full): the new empty #NMSettingWpan object
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.14
|
|
|
|
|
**/
|
|
|
|
|
NMSetting *
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_new(void)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
return (NMSetting *) g_object_new(NM_TYPE_SETTING_WPAN, NULL);
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
finalize(GObject *object)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
NMSettingWpanPrivate *priv = NM_SETTING_WPAN_GET_PRIVATE(object);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
g_free(priv->mac_address);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
G_OBJECT_CLASS(nm_setting_wpan_parent_class)->finalize(object);
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
nm_setting_wpan_class_init(NMSettingWpanClass *klass)
|
2018-03-09 10:51:49 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
GObjectClass * object_class = G_OBJECT_CLASS(klass);
|
|
|
|
|
NMSettingClass *setting_class = NM_SETTING_CLASS(klass);
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
g_type_class_add_private(setting_class, sizeof(NMSettingWpanPrivate));
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
object_class->get_property = get_property;
|
|
|
|
|
object_class->set_property = set_property;
|
|
|
|
|
object_class->finalize = finalize;
|
libnm/trivial: cleanup variable names in settings' class-init functions
- Don't use @parent_class name. This local variable (and @object_class) is
the class instance up-cast to the pointer types of the parents. The point
here is not that it is the direct parent. The point is, that it's the
NMSettingClass type.
Also, it can only be used inconsistently, in face of NMSettingIP4Config,
who's parent type is NMSettingIPConfig. Clearly, inside
nm-setting-ip4-config.c we wouldn't want to use the "parent_class"
name. Consistently rename @parent_class to @setting_class.
- Also rename the pointer to the own class to @klass. "setting_class" is also the
wrong name for that, because the right name would be something like
"setting_6lowpan_class".
However, "klass" is preferred over the latter, because we commonly create new
GObject implementations by copying an existing one. Generic names like "klass"
and "self" inside a type implementation make that simpler.
- drop useless comments like
/* virtual functions */
/* Properties */
It's better to logically and visually structure the code, and avoid trival
remarks about that. They only end up being used inconsistently. If you
even need a stronger visual separator, then an 80 char /****/ line
should be preferred.
2018-07-28 10:43:21 +02:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
setting_class->verify = verify;
|
2018-03-09 10:51:49 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
/**
|
2020-09-28 14:50:01 +02:00
|
|
|
* NMSettingWpan:mac-address:
|
|
|
|
|
*
|
|
|
|
|
* If specified, this connection will only apply to the IEEE 802.15.4 (WPAN)
|
|
|
|
|
* MAC layer device whose permanent MAC address matches.
|
|
|
|
|
**/
|
2020-09-28 16:03:33 +02:00
|
|
|
/* ---keyfile---
|
2020-09-28 14:50:01 +02:00
|
|
|
* property: mac-address
|
|
|
|
|
* format: usual hex-digits-and-colons notation
|
|
|
|
|
* description: MAC address in hex-digits-and-colons notation
|
|
|
|
|
* (e.g. 76:d8:9b:87:66:60:84:ee).
|
|
|
|
|
* ---end---
|
|
|
|
|
*/
|
2020-09-28 16:03:33 +02:00
|
|
|
obj_properties[PROP_MAC_ADDRESS] =
|
|
|
|
|
g_param_spec_string(NM_SETTING_WPAN_MAC_ADDRESS,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-28 14:50:01 +02:00
|
|
|
* NMSettingWpan:pan-id:
|
|
|
|
|
*
|
|
|
|
|
* IEEE 802.15.4 Personal Area Network (PAN) identifier.
|
|
|
|
|
**/
|
2020-09-28 16:03:33 +02:00
|
|
|
obj_properties[PROP_PAN_ID] = g_param_spec_uint(NM_SETTING_WPAN_PAN_ID,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
0,
|
|
|
|
|
G_MAXUINT16,
|
|
|
|
|
G_MAXUINT16,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-28 14:50:01 +02:00
|
|
|
* NMSettingWpan:short-address:
|
|
|
|
|
*
|
|
|
|
|
* Short IEEE 802.15.4 address to be used within a restricted environment.
|
|
|
|
|
**/
|
2020-09-28 16:03:33 +02:00
|
|
|
obj_properties[PROP_SHORT_ADDRESS] =
|
|
|
|
|
g_param_spec_uint(NM_SETTING_WPAN_SHORT_ADDRESS,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
0,
|
|
|
|
|
G_MAXUINT16,
|
|
|
|
|
G_MAXUINT16,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-28 14:50:01 +02:00
|
|
|
* NMSettingWpan:page:
|
|
|
|
|
*
|
|
|
|
|
* IEEE 802.15.4 channel page. A positive integer or -1, meaning "do not
|
|
|
|
|
* set, use whatever the device is already set to".
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.16
|
|
|
|
|
**/
|
2020-09-28 16:03:33 +02:00
|
|
|
obj_properties[PROP_PAGE] = g_param_spec_int(NM_SETTING_WPAN_PAGE,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
G_MININT16,
|
|
|
|
|
G_MAXINT16,
|
|
|
|
|
NM_SETTING_WPAN_PAGE_DEFAULT,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-28 14:50:01 +02:00
|
|
|
* NMSettingWpan:channel:
|
|
|
|
|
*
|
|
|
|
|
* IEEE 802.15.4 channel. A positive integer or -1, meaning "do not
|
|
|
|
|
* set, use whatever the device is already set to".
|
|
|
|
|
*
|
|
|
|
|
* Since: 1.16
|
|
|
|
|
**/
|
2020-09-28 16:03:33 +02:00
|
|
|
obj_properties[PROP_CHANNEL] = g_param_spec_int(NM_SETTING_WPAN_CHANNEL,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
G_MININT16,
|
|
|
|
|
G_MAXINT16,
|
|
|
|
|
NM_SETTING_WPAN_CHANNEL_DEFAULT,
|
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
2019-01-11 08:28:26 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
g_object_class_install_properties(object_class, _PROPERTY_ENUMS_LAST, obj_properties);
|
2018-09-19 19:04:49 +02:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
_nm_setting_class_commit(setting_class, NM_META_SETTING_TYPE_WPAN);
|
2018-03-09 10:51:49 +01:00
|
|
|
}
|