include: Add netmon changes

This commit is contained in:
Nishanth V 2016-03-31 09:51:42 +05:30 committed by Denis Kenzior
parent e5e6add6ad
commit ef5acf0c8d
2 changed files with 15 additions and 0 deletions

View File

@ -60,6 +60,7 @@ extern "C" {
#define OFONO_GNSS_POSR_AGENT_INTERFACE "org.ofono.PositioningRequestAgent"
#define OFONO_HANDSFREE_INTERFACE OFONO_SERVICE ".Handsfree"
#define OFONO_SIRI_INTERFACE OFONO_SERVICE ".Siri"
#define OFONO_NETMON_INTERFACE OFONO_SERVICE ".NetworkMonitor"
/* CDMA Interfaces */
#define OFONO_CDMA_VOICECALL_MANAGER_INTERFACE "org.ofono.cdma.VoiceCallManager"

View File

@ -77,6 +77,20 @@ void ofono_netmon_serving_cell_notify(struct ofono_netmon *netmon,
enum ofono_netmon_cell_type type,
int info_type, ...);
int ofono_netmon_driver_register(const struct ofono_netmon_driver *d);
void ofono_netmon_driver_unregister(const struct ofono_netmon_driver *d);
struct ofono_netmon *ofono_netmon_create(struct ofono_modem *modem,
unsigned int vendor, const char *driver, void *data);
void ofono_netmon_register(struct ofono_netmon *netmon);
void ofono_netmon_remove(struct ofono_netmon *netmon);
void ofono_netmon_set_data(struct ofono_netmon *netmon, void *data);
void *ofono_netmon_get_data(struct ofono_netmon *netmon);
#ifdef __cplusplus
}