From dc154cf005bbcb2f0bd1123093f6ac3c402c4de8 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Sun, 11 Nov 2018 14:46:53 +0100 Subject: api,bearer: new 'BearerType' property Until now we have only allowed to use and setup 'default bearers' (in 4G) or 'primary contexts' (in 2G/3G). We can define a couple of additional bearer types, though: * The 'dedicated bearers' (in 4G) or 'secondary contexts' (in 2G/3G), which are associated to a specific default/primary one, but which provide specific QoS settings configured via traffic flow templates. * The 'initial default EPS bearer', which is a special case of default bearer in LTE, which is automatically created and connected when the modem is registered in the LTE network. This commit introduces a new 'MMBearerType' enumeration that will be associated to each bearer through a 'BearerType' property in the org.freedesktop.ModemManager1.Bearer interface, showing what kind of bearer/context this is. By default, right now, all bearer objects created are 'default' bearers. --- libmm-glib/mm-bearer.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'libmm-glib/mm-bearer.c') diff --git a/libmm-glib/mm-bearer.c b/libmm-glib/mm-bearer.c index fc1425bd..1195ae0d 100644 --- a/libmm-glib/mm-bearer.c +++ b/libmm-glib/mm-bearer.c @@ -204,6 +204,24 @@ mm_bearer_get_ip_timeout (MMBearer *self) /*****************************************************************************/ +/** + * mm_bearer_get_bearer_type: + * @self: A #MMBearer. + * + * Gets the type of bearer. + * + * Returns: a #MMBearerType. + */ +MMBearerType +mm_bearer_get_bearer_type (MMBearer *self) +{ + g_return_val_if_fail (MM_IS_BEARER (self), MM_BEARER_TYPE_UNKNOWN); + + return mm_gdbus_bearer_get_bearer_type (MM_GDBUS_BEARER (self)); +} + +/*****************************************************************************/ + static void ipv4_config_updated (MMBearer *self, GParamSpec *pspec) -- cgit v1.2.3-70-g09d2