summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2015-12-03 10:20:58 -0600
committerDenis Kenzior <denkenz@gmail.com>2015-12-03 10:20:58 -0600
commitbe716557418c08e8159814fc87b8587882f34de9 (patch)
tree83d04c137a6ed41c32b4a3ebad7fa3cb36f7d0f4
parent194003912d5d7ba7c6311abbc6b05a78dff4780c (diff)
downloadofono-be716557418c08e8159814fc87b8587882f34de9.tar.bz2
gril: Remove grilrequest.[ch]
-rw-r--r--Makefile.am1
-rw-r--r--gril/grilrequest.c113
-rw-r--r--gril/grilrequest.h54
3 files changed, 0 insertions, 168 deletions
diff --git a/Makefile.am b/Makefile.am
index 09e1f656..6c6f4d7b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -101,7 +101,6 @@ gril_sources = gril/gril.h gril/gril.c \
gril/gfunc.h gril/gril.h \
gril/parcel.c gril/parcel.h \
gril/grilreply.c gril/grilreply.h \
- gril/grilrequest.c gril/grilrequest.h \
gril/grilunsol.c gril/grilunsol.h \
gril/ril_constants.h
diff --git a/gril/grilrequest.c b/gril/grilrequest.c
deleted file mode 100644
index f6ac4043..00000000
--- a/gril/grilrequest.c
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- *
- * RIL library with GLib integration
- *
- * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
- * Copyright (C) 2012-2014 Canonical Ltd.
- * Copyright (C) 2015 Ratchanan Srirattanamet.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <stdio.h>
-#include <ctype.h>
-#include <errno.h>
-#include <string.h>
-
-#include <glib.h>
-
-#include <ofono/log.h>
-#include <ofono/modem.h>
-#include <ofono/gprs-context.h>
-
-#include "grilrequest.h"
-#include "simutil.h"
-#include "util.h"
-#include "common.h"
-
-
-/* SETUP_DATA_CALL_PARAMS reply parameters */
-#define MIN_DATA_CALL_REPLY_SIZE 36
-
-/* Call ID should not really be a big number */
-#define MAX_CID_DIGITS 3
-
-#define OFONO_EINVAL(error) do { \
- error->type = OFONO_ERROR_TYPE_FAILURE; \
- error->error = -EINVAL; \
-} while (0)
-
-#define OFONO_NO_ERROR(error) do { \
- error->type = OFONO_ERROR_TYPE_NO_ERROR; \
- error->error = 0; \
-} while (0)
-
-void g_ril_request_set_initial_attach_apn(GRil *gril, const char *apn,
- int proto,
- const char *user,
- const char *passwd,
- const char *mccmnc,
- struct parcel *rilp)
-{
- const char *proto_str;
- const int auth_type = RIL_AUTH_ANY;
-
- parcel_init(rilp);
-
- parcel_w_string(rilp, apn);
-
- proto_str = ril_ofono_protocol_to_ril_string(proto);
- parcel_w_string(rilp, proto_str);
-
- parcel_w_int32(rilp, auth_type);
- parcel_w_string(rilp, user);
- parcel_w_string(rilp, passwd);
-
- g_ril_append_print_buf(gril, "(%s,%s,%s,%s,%s", apn, proto_str,
- ril_authtype_to_string(auth_type),
- user, passwd);
-
- if (g_ril_vendor(gril) == OFONO_RIL_VENDOR_MTK) {
- parcel_w_string(rilp, mccmnc);
- g_ril_append_print_buf(gril, "%s,%s)", print_buf, mccmnc);
- } else {
- g_ril_append_print_buf(gril, "%s)", print_buf);
- }
-}
-
-void g_ril_request_set_uicc_subscription(GRil *gril, int slot_id,
- int app_index,
- int sub_id,
- int sub_status,
- struct parcel *rilp)
-{
- parcel_init(rilp);
-
- parcel_w_int32(rilp, slot_id);
- parcel_w_int32(rilp, app_index);
- parcel_w_int32(rilp, sub_id);
- parcel_w_int32(rilp, sub_status);
-
- g_ril_append_print_buf(gril, "(%d, %d, %d, %d(%s))",
- slot_id,
- app_index,
- sub_id,
- sub_status,
- sub_status ? "ACTIVATE" : "DEACTIVATE");
-}
diff --git a/gril/grilrequest.h b/gril/grilrequest.h
deleted file mode 100644
index 92b5dac3..00000000
--- a/gril/grilrequest.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- *
- * RIL library with GLib integration
- *
- * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
- * Copyright (C) 2012-2014 Canonical Ltd.
- * Copyright (C) 2015 Ratchanan Srirattanamet.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#ifndef __GRILREQUEST_H
-#define __GRILREQUEST_H
-
-#include <ofono/types.h>
-#include <ofono/modem.h>
-#include <ofono/sim.h>
-
-#include "gril.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void g_ril_request_set_initial_attach_apn(GRil *gril, const char *apn,
- int proto,
- const char *user,
- const char *passwd,
- const char *mccmnc,
- struct parcel *rilp);
-
-void g_ril_request_set_uicc_subscription(GRil *gril, int slot_id,
- int app_index,
- int sub_id,
- int sub_status,
- struct parcel *rilp);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __GRILREQUEST_H */