summaryrefslogtreecommitdiffstats
path: root/src/sim.h
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2009-05-22 13:57:18 +0200
committerDenis Kenzior <denkenz@gmail.com>2009-05-26 18:15:51 -0500
commit70fce6b5512a42f97fc6fb725c0d1e8465db4ad1 (patch)
tree233c5ada0390666d480ac4ba8e3cabda7766877a /src/sim.h
parent49da0e11bcf74790bf7277dc0af43c1600c5dd69 (diff)
downloadofono-70fce6b5512a42f97fc6fb725c0d1e8465db4ad1.tar.bz2
Add SimManager interface.
Implement basic SIM filesystem utilities. Obtain Service Provider Name EF-SPN record. Make NetworkRegistration use SPN for PLMN display. This implements PLMN display rules in 31.102 "EFSPN".
Diffstat (limited to 'src/sim.h')
-rw-r--r--src/sim.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/sim.h b/src/sim.h
new file mode 100644
index 00000000..bf44681e
--- /dev/null
+++ b/src/sim.h
@@ -0,0 +1,35 @@
+/*
+ *
+ * oFono - Open Source Telephony
+ *
+ * Copyright (C) 2008-2009 Intel Corporation. All rights reserved.
+ *
+ * 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 __SIM_H__
+#define __SIM_H__
+
+typedef void (*update_spn_cb)(struct ofono_modem *modem, const char *spn,
+ int home_plmn_dpy, int roaming_spn_dpy);
+
+void ofono_sim_manager_init(struct ofono_modem *modem);
+void ofono_sim_manager_exit(struct ofono_modem *modem);
+int ofono_spn_update_notify_register(struct ofono_modem *modem,
+ update_spn_cb cb);
+int ofono_spn_update_notify_unregister(struct ofono_modem *modem,
+ update_spn_cb cb);
+
+#endif