diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2006-09-21 17:08:24 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2006-09-21 17:08:24 +0000 | 
| commit | d081140f88255564da6ba624f7ad1fc61db8c9f7 (patch) | |
| tree | 7c1c6205f99a6b2273c70e02f123dfc3164d6daf | |
| parent | 0c9b7f361df669ff0e7f681b13f1ba18043be2d4 (diff) | |
Rename RemoteDeviceLost to RemoteDeviceDisappeared
| -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); | 
