diff options
author | Attila Dusnoki <dati91@users.noreply.github.com> | 2016-05-24 15:50:33 +0200 |
---|---|---|
committer | Attila Dusnoki <dati91@users.noreply.github.com> | 2016-05-24 15:50:33 +0200 |
commit | 39c99af4c87ef7eb6965842436b23d9364c341ca (patch) | |
tree | 748e7bbdc7b3e3693993edea9eb38736384f162b /components/net_traits/bluetooth_thread.rs | |
parent | 03465ad8c77f03ae2f538d046ae1e1dc86f04723 (diff) | |
download | servo-39c99af4c87ef7eb6965842436b23d9364c341ca.tar.gz servo-39c99af4c87ef7eb6965842436b23d9364c341ca.zip |
Add included services
Diffstat (limited to 'components/net_traits/bluetooth_thread.rs')
-rw-r--r-- | components/net_traits/bluetooth_thread.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/net_traits/bluetooth_thread.rs b/components/net_traits/bluetooth_thread.rs index 9a2e6f07e93..caeadabd6d4 100644 --- a/components/net_traits/bluetooth_thread.rs +++ b/components/net_traits/bluetooth_thread.rs @@ -60,6 +60,8 @@ pub enum BluetoothMethodMsg { GATTServerDisconnect(String, IpcSender<BluetoothResult<bool>>), GetPrimaryService(String, String, IpcSender<BluetoothResult<BluetoothServiceMsg>>), GetPrimaryServices(String, Option<String>, IpcSender<BluetoothResult<BluetoothServicesMsg>>), + GetIncludedService(String, String, IpcSender<BluetoothResult<BluetoothServiceMsg>>), + GetIncludedServices(String, Option<String>, IpcSender<BluetoothResult<BluetoothServicesMsg>>), GetCharacteristic(String, String, IpcSender<BluetoothResult<BluetoothCharacteristicMsg>>), GetCharacteristics(String, Option<String>, IpcSender<BluetoothResult<BluetoothCharacteristicsMsg>>), GetDescriptor(String, String, IpcSender<BluetoothResult<BluetoothDescriptorMsg>>), |