diff options
Diffstat (limited to 'src/mm-modem-helpers.h')
-rw-r--r-- | src/mm-modem-helpers.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mm-modem-helpers.h b/src/mm-modem-helpers.h index 5a8ba493..80c31691 100644 --- a/src/mm-modem-helpers.h +++ b/src/mm-modem-helpers.h @@ -98,6 +98,16 @@ void mm_3gpp_network_info_list_free (GList *info_list); GList *mm_3gpp_parse_cops_test_response (const gchar *reply, GError **error); +/* AT+CGDCONT=? (PDP context format) test parser */ +typedef struct { + guint min_cid; + guint max_cid; + MMBearerIpFamily pdp_type; +} MM3gppPdpContextFormat; +void mm_3gpp_pdp_context_format_list_free (GList *pdp_format_list); +GList *mm_3gpp_parse_cgdcont_test_response (const gchar *reply, + GError **error); + /* AT+CGDCONT? (PDP context query) response parser */ typedef struct { guint cid; |