diff options
Diffstat (limited to 'hcid')
| -rw-r--r-- | hcid/dbus-api.txt | 6 | ||||
| -rw-r--r-- | hcid/dbus.c | 2 | 
2 files changed, 7 insertions, 1 deletions
| diff --git a/hcid/dbus-api.txt b/hcid/dbus-api.txt index 7205d349..957c3b2d 100644 --- a/hcid/dbus-api.txt +++ b/hcid/dbus-api.txt @@ -767,6 +767,12 @@ Signals		void ModeChanged(string mode)  			has been found by the service daemon. In general they  			only appear during a device discovery. +		void RemoteDeviceDisappeared(string address) + +			This signal will be send when an inquiry session for +			a periodic discovery finishes and previously found +			devices are no longer in range or visible. +  		void RemoteClassUpdated(string address, uint32 class)  			This signal will be send every time the remote class diff --git a/hcid/dbus.c b/hcid/dbus.c index c8916590..6167685c 100644 --- a/hcid/dbus.c +++ b/hcid/dbus.c @@ -1019,7 +1019,7 @@ static void send_out_of_range(const char *path, struct slist *l)  		peer_addr = l->data;  		message = dbus_message_new_signal(path, ADAPTER_INTERFACE, -						"RemoteDeviceLost"); +						"RemoteDeviceDisappeared");  		dbus_message_append_args(message,  				DBUS_TYPE_STRING, &peer_addr,  				DBUS_TYPE_INVALID); | 
