summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAntara Borwankar <antara.borwankar@intel.com>2019-06-07 11:56:55 +0530
committerDenis Kenzior <denkenz@gmail.com>2019-06-07 11:19:15 -0500
commitdbcd081a639722a242aee7217312d6d654e876e5 (patch)
tree8b073d4fa4e494238359f88e394d8f3d4291dc29 /include
parentdf36faccd9220e68c33756641c6f7ddfff942343 (diff)
downloadofono-dbcd081a639722a242aee7217312d6d654e876e5.tar.gz
netmon: adding get function for neighbouring cell information
Added declaration of functions and structures required for getting neighbouring cell information.
Diffstat (limited to 'include')
-rw-r--r--include/netmon.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/netmon.h b/include/netmon.h
index c8fcafa6..a99d6ca9 100644
--- a/include/netmon.h
+++ b/include/netmon.h
@@ -43,6 +43,8 @@ struct ofono_netmon_driver {
unsigned int enable,
unsigned int period,
ofono_netmon_cb_t cb, void *data);
+ void (*neighbouring_cell_update)(struct ofono_netmon *netmon,
+ ofono_netmon_cb_t cb, void *data);
};
enum ofono_netmon_cell_type {
@@ -104,6 +106,10 @@ void ofono_netmon_set_data(struct ofono_netmon *netmon, void *data);
void *ofono_netmon_get_data(struct ofono_netmon *netmon);
+void ofono_netmon_neighbouring_cell_notify(struct ofono_netmon *netmon,
+ enum ofono_netmon_cell_type type,
+ int info_type, ...);
+
#ifdef __cplusplus
}
#endif