aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2012-07-18 10:56:11 -0500
committerDan Williams <dcbw@redhat.com>2012-07-18 10:56:11 -0500
commit943e6ce3d28f64a28a7c1e905dbab4c5679e0916 (patch)
tree476f2c95c3ffbb3ca5de45a13d51aaa2abd65165
parent0e378b7fcb2153d24600389c99a672b277dd6923 (diff)
Revert "hso: handle reading PIN/PUK retry counts"
This reverts commit c1c94333d7e33a257a8476393e468e8dd57482d5. Didn't realize that 0.5 doesn't support this yet.
-rw-r--r--plugins/mm-modem-hso.c84
1 files changed, 1 insertions, 83 deletions
diff --git a/plugins/mm-modem-hso.c b/plugins/mm-modem-hso.c
index e98e5f50..511e8628 100644
--- a/plugins/mm-modem-hso.c
+++ b/plugins/mm-modem-hso.c
@@ -27,7 +27,6 @@
#include "mm-modem-hso.h"
#include "mm-modem-simple.h"
-#include "mm-modem-gsm-card.h"
#include "mm-serial-parsers.h"
#include "mm-errors.h"
#include "mm-callback-info.h"
@@ -41,12 +40,10 @@ static void impl_hso_authenticate (MMModemHso *self,
static void modem_init (MMModem *modem_class);
static void modem_simple_init (MMModemSimple *simple_class);
-static void modem_gsm_card_init (MMModemGsmCard *class);
G_DEFINE_TYPE_EXTENDED (MMModemHso, mm_modem_hso, MM_TYPE_GENERIC_GSM, 0,
G_IMPLEMENT_INTERFACE (MM_TYPE_MODEM, modem_init)
- G_IMPLEMENT_INTERFACE (MM_TYPE_MODEM_SIMPLE, modem_simple_init)
- G_IMPLEMENT_INTERFACE (MM_TYPE_MODEM_GSM_CARD, modem_gsm_card_init))
+ G_IMPLEMENT_INTERFACE (MM_TYPE_MODEM_SIMPLE, modem_simple_init))
#define MM_MODEM_HSO_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MM_TYPE_MODEM_HSO, MMModemHsoPrivate))
@@ -730,79 +727,6 @@ get_access_technology (MMGenericGsm *gsm,
option_get_access_technology (gsm, callback, user_data);
}
-static void
-send_retries_done (MMAtSerialPort *port,
- GString *response,
- GError *error,
- gpointer user_data)
-{
- MMCallbackInfo *info = (MMCallbackInfo *) user_data;
- int matched;
- GArray *retry_counts;
- PinRetryCount ur[4] = {
- {"sim-pin", 0}, {"sim-puk", 0}, {"sim-pin2", 0}, {"sim-puk2", 0}
- };
-
- /* If the modem has already been removed, return without
- * scheduling callback */
- if (mm_callback_info_check_modem_removed (info))
- return;
-
- if (error) {
- info->error = g_error_copy (error);
- goto done;
- }
-
- matched = sscanf (response->str, "_OERCN: %d, %d", &ur[0].count, &ur[1].count);
- if (matched == 2) {
- if (ur[0].count > 998) {
- info->error = g_error_new (MM_MODEM_ERROR, MM_MODEM_ERROR_GENERAL,
- "Invalid PIN attempts left %d", ur[0].count);
- ur[0].count = 0;
- }
-
- retry_counts = g_array_sized_new (FALSE, TRUE, sizeof (PinRetryCount), 4);
- g_array_append_vals (retry_counts, &ur, 4);
- mm_callback_info_set_result (info, retry_counts, NULL);
- } else {
- info->error = g_error_new_literal (MM_MODEM_ERROR, MM_MODEM_ERROR_GENERAL,
- "Could not parse PIN retries results");
- }
-
-done:
- mm_serial_port_close (MM_SERIAL_PORT (port));
- mm_callback_info_schedule (info);
-}
-
-static void
-get_unlock_retries (MMModemGsmCard *modem,
- MMModemArrayFn callback,
- gpointer user_data)
-{
- MMAtSerialPort *port;
- MMCallbackInfo *info = mm_callback_info_array_new (MM_MODEM (modem), callback, user_data);
-
- /* Ensure we have a usable port to use for the command */
- port = mm_generic_gsm_get_best_at_port (MM_GENERIC_GSM (modem), &info->error);
- if (!port) {
- mm_callback_info_schedule (info);
- return;
- }
-
- /* Modem may not be enabled yet, which sometimes can't be done until
- * the device has been unlocked. In this case we have to open the port
- * ourselves.
- */
- if (!mm_serial_port_open (MM_SERIAL_PORT (port), &info->error)) {
- mm_callback_info_schedule (info);
- return;
- }
-
- /* if the modem have not yet been enabled we need to make sure echoing is turned off */
- mm_at_serial_port_queue_command (port, "E0", 3, NULL, NULL);
- mm_at_serial_port_queue_command (port, "_OERCN?", 3, send_retries_done, info);
-}
-
/*****************************************************************************/
static gboolean
@@ -900,12 +824,6 @@ modem_simple_init (MMModemSimple *class)
}
static void
-modem_gsm_card_init (MMModemGsmCard *class)
-{
- class->get_unlock_retries = get_unlock_retries;
-}
-
-static void
modem_init (MMModem *modem_class)
{
modem_class->disable = disable;