From 3f8d974b146b8470bc6ae1a6b037825d8072835c Mon Sep 17 00:00:00 2001 From: Wootak Jung Date: Fri, 13 Oct 2023 10:10:53 +0900 Subject: [PATCH] main.conf: Change the TemporaryTimout value to 180 temporary devices will be removed after 180s not 30s Change-Id: I6741644d7dd1df7d7ea885e7750600ec5614e93e Signed-off-by: Wootak Jung --- src/main_da.conf | 9 +++++++++ src/main_m.conf | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/src/main_da.conf b/src/main_da.conf index 29e9c0e..9666254 100755 --- a/src/main_da.conf +++ b/src/main_da.conf @@ -81,6 +81,15 @@ EnableLEPrivacy = false DefaultA2DPRoleSink = true #endif +# How long to keep temporary devices around +# The value is in seconds. Default is 30. +# 0 = disable timer, i.e. never keep temporary devices +#ifdef TIZEN_FEATURE_BLUEZ_MODIFY +TemporaryTimeout = 180 +#else +#TemporaryTimeout = 30 +#endif + #ifdef TIZEN_APPLIANCE [GATT] # GATT attribute cache. diff --git a/src/main_m.conf b/src/main_m.conf index bb431e4..323d4b1 100755 --- a/src/main_m.conf +++ b/src/main_m.conf @@ -76,6 +76,15 @@ Class = 0x00020C # Smart phone EnableLEPrivacy = false #endif +# How long to keep temporary devices around +# The value is in seconds. Default is 30. +# 0 = disable timer, i.e. never keep temporary devices +#ifdef TIZEN_FEATURE_BLUEZ_MODIFY +TemporaryTimeout = 180 +#else +#TemporaryTimeout = 30 +#endif + #[Policy] # # The ReconnectUUIDs defines the set of remote services that should try -- 2.7.4