diff --git a/include/dbus.h b/include/dbus.h index 3d39eff4..99d45d65 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -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" diff --git a/include/netmon.h b/include/netmon.h index 324d2f7f..a8390c41 100644 --- a/include/netmon.h +++ b/include/netmon.h @@ -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 }