From 9ca3bc13467db116526003bea7befc9f04fb2a75 Mon Sep 17 00:00:00 2001 From: Grzegorz Kolodziejczyk Date: Fri, 21 Nov 2014 12:40:51 +0100 Subject: [PATCH] android/client: Add support for gattc scan_filter_enable --- android/client/if-gatt.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/android/client/if-gatt.c b/android/client/if-gatt.c index c06a1a5cb..2b874c393 100644 --- a/android/client/if-gatt.c +++ b/android/client/if-gatt.c @@ -1761,6 +1761,31 @@ static void scan_filter_clear_p(int argc, const char **argv) EXEC(if_gatt->client->scan_filter_clear, client_if, filt_index); } + +/* scan filter enable */ +static void scan_filter_enable_c(int argc, const char **argv, + enum_func *enum_func, void **user) +{ + if (argc == 2) { + *user = client_if_str; + *enum_func = enum_one_string; + } +} + +static void scan_filter_enable_p(int argc, const char **argv) +{ + int client_if; + int enable = 0; + + RETURN_IF_NULL(if_gatt); + VERIFY_CLIENT_IF(2, client_if); + + /* enable */ + if (argc >= 4) + enable = atoi(argv[3]); + + EXEC(if_gatt->client->scan_filter_clear, client_if, enable); +} #endif /* get_device_type */ @@ -1839,6 +1864,7 @@ static struct method client_methods[] = { " [] " " [] []"), STD_METHODCH(scan_filter_clear, " "), + STD_METHODCH(scan_filter_enable, " []"), #else STD_METHODCH(scan, " [1|0]"), STD_METHODCH(connect, " []"), -- 2.47.3