diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-modem-helpers.c | 5 | ||||
-rw-r--r-- | src/mm-modem-helpers.h | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c index 1fb5fa94..31978bf2 100644 --- a/src/mm-modem-helpers.c +++ b/src/mm-modem-helpers.c @@ -1202,6 +1202,9 @@ mm_3gpp_parse_operator (const gchar *reply, /*************************************************************************/ +/* TODO: port to the new codebase */ +#if 0 + /* Map two letter facility codes into flag values. There are * many more facilities defined (for various flavors of call * barring); we only map the ones we care about. */ @@ -1348,6 +1351,8 @@ mm_gsm_parse_clck_response (const char *reply, gboolean *enabled) return success; } +#endif + /*************************************************************************/ MMModemAccessTechnology diff --git a/src/mm-modem-helpers.h b/src/mm-modem-helpers.h index 92b883e1..63bfbd3a 100644 --- a/src/mm-modem-helpers.h +++ b/src/mm-modem-helpers.h @@ -103,15 +103,18 @@ gboolean mm_cdma_parse_crm_range_response (const gchar *reply, gboolean mm_gsm_parse_cscs_support_response (const char *reply, MMModemCharset *out_charsets); +/* TODO: port to the new codebase */ +#if 0 gboolean mm_gsm_parse_clck_test_response (const char *reply, MMModemGsmFacility *out_facilities); gboolean mm_gsm_parse_clck_response (const char *reply, gboolean *enabled); +char *mm_gsm_get_facility_name (MMModemGsmFacility facility); +#endif gchar *mm_3gpp_parse_operator (const gchar *reply, MMModemCharset cur_charset); -char *mm_gsm_get_facility_name (MMModemGsmFacility facility); MMModemAccessTechnology mm_3gpp_string_to_access_tech (const gchar *string); |