diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-12-06 07:55:58 +0100 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2018-12-07 16:20:53 +0000 |
commit | 8281b5048bc002dd2b049fdad041a35b7175eca7 (patch) | |
tree | f0d63ac18cdb5031f7209d7d4175d140a31a7326 /libmm-glib/mm-modem-3gpp.h | |
parent | 9c3ac2fb6023b87d065221f845969b0f06e26363 (diff) |
api,modem-3gpp: new 'InitialEpsBearerSettings' property
This property shows the settings stored in the device to be used
during the initial LTE attach procedure.
Diffstat (limited to 'libmm-glib/mm-modem-3gpp.h')
-rw-r--r-- | libmm-glib/mm-modem-3gpp.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libmm-glib/mm-modem-3gpp.h b/libmm-glib/mm-modem-3gpp.h index 6d87a47d..ce7df740 100644 --- a/libmm-glib/mm-modem-3gpp.h +++ b/libmm-glib/mm-modem-3gpp.h @@ -44,6 +44,7 @@ G_BEGIN_DECLS typedef struct _MMModem3gpp MMModem3gpp; typedef struct _MMModem3gppClass MMModem3gppClass; +typedef struct _MMModem3gppPrivate MMModem3gppPrivate; /** * MMModem3gpp: @@ -53,8 +54,8 @@ typedef struct _MMModem3gppClass MMModem3gppClass; */ struct _MMModem3gpp { /*< private >*/ - MmGdbusModem3gppProxy parent; - gpointer unused; + MmGdbusModem3gppProxy parent; + MMModem3gppPrivate *priv; }; struct _MMModem3gppClass { @@ -87,6 +88,9 @@ GList *mm_modem_3gpp_get_pco (MMModem3gpp *self); const gchar *mm_modem_3gpp_get_initial_eps_bearer_path (MMModem3gpp *self); gchar *mm_modem_3gpp_dup_initial_eps_bearer_path (MMModem3gpp *self); +MMBearerProperties *mm_modem_3gpp_get_initial_eps_bearer_settings (MMModem3gpp *self); +MMBearerProperties *mm_modem_3gpp_peek_initial_eps_bearer_settings (MMModem3gpp *self); + void mm_modem_3gpp_register (MMModem3gpp *self, const gchar *network_id, GCancellable *cancellable, |