Hi Antara,

On 03/27/2019 07:09 AM, Antara Borwankar wrote:
Adding set function definition for CardSlotCount and ActiveCardSlot
properties.
---
  include/sim.h | 8 ++++++++
  1 file changed, 8 insertions(+)

diff --git a/include/sim.h b/include/sim.h
index fad4c0d..be5d82f 100644
--- a/include/sim.h
+++ b/include/sim.h
@@ -132,6 +132,9 @@ typedef void (*ofono_sim_close_channel_cb_t)(const struct 
ofono_error *error,
  typedef void (*ofono_sim_logical_access_cb_t)(const struct ofono_error *error,
                const unsigned char *resp, unsigned int len, void *data);
+typedef void (*ofono_sim_active_slot_change_cb_t)(const struct ofono_error *error,
+                                       void *data);
+

ofono_sim_set_active_card_slot_cb_t

  struct ofono_sim_driver {
        const char *name;
        int (*probe)(struct ofono_sim *sim, unsigned int vendor, void *data);
@@ -205,6 +208,8 @@ struct ofono_sim_driver {
        void (*logical_access)(struct ofono_sim *sim, int session_id,
                        const unsigned char *pdu, unsigned int len,
                        ofono_sim_logical_access_cb_t cb, void *data);
+       void (*set_active_sim)(struct ofono_sim *sim, unsigned int index,

Lets call this set_active_card_slot to be consistent with the D-Bus API

+                       ofono_sim_active_slot_change_cb_t cb, void *data);
  };
int ofono_sim_driver_register(const struct ofono_sim_driver *d);
@@ -219,6 +224,9 @@ void ofono_sim_remove(struct ofono_sim *sim);
void ofono_sim_set_data(struct ofono_sim *sim, void *data);
  void *ofono_sim_get_data(struct ofono_sim *sim);
+void ofono_sim_set_card_slot_num(struct ofono_sim *sim, unsigned int val);

ofono_sim_set_card_slot_count

+void ofono_sim_set_active_card_slot_num(struct ofono_sim *sim,
+                                       unsigned int val);

ofono_sim_set_active_card_slot

const char *ofono_sim_get_imsi(struct ofono_sim *sim);
  const char *ofono_sim_get_mcc(struct ofono_sim *sim);


Regards,
-Denis
_______________________________________________
ofono mailing list
[email protected]
https://lists.ofono.org/mailman/listinfo/ofono

Reply via email to