This adds new main.conf configure option named MultiProfile. It allows to enable MPSD and MPMD scenarios for MPS. By default MPS is disabled. --- src/main.c | 22 ++++++++++++++++++++++ src/main.conf | 5 +++++ 2 files changed, 27 insertions(+) diff --git a/src/main.c b/src/main.c index b3140d0..0acab65 100644 --- a/src/main.c +++ b/src/main.c @@ -69,6 +69,9 @@ struct main_opts main_opts; static GKeyFile *main_conf; +static bool mps_mpsd = false; +static bool mps_mpmd = false; + static const char * const supported_options[] = { "Name", "Class", @@ -307,6 +310,22 @@ static void parse_config(GKeyFile *config) main_opts.mode = get_mode(str); g_free(str); } + + str = g_key_file_get_string(config, "General", "MultiProfile", &err); + if (err) { + g_clear_error(&err); + } else { + DBG("MultiProfile=%s", str); + + if (strcmp(str, "mpsd")) { + mps_mpsd = true; + } else if (strcmp(str, "mpmd")) { + mps_mpsd = true; + mps_mpmd = true; + } + + g_free(str); + } } static void init_defaults(void) @@ -599,6 +618,9 @@ int main(int argc, char *argv[]) register_device_id(main_opts.did_source, main_opts.did_vendor, main_opts.did_product, main_opts.did_version); + if (mps_mpsd) + register_mps(mps_mpmd); + /* Loading plugins has to be done after D-Bus has been setup since * the plugins might wanna expose some paths on the bus. However the * best order of how to init various subsystems of the Bluetooth diff --git a/src/main.conf b/src/main.conf index d4d6ab0..a8f37f0 100644 --- a/src/main.conf +++ b/src/main.conf @@ -52,6 +52,11 @@ # Possible values: "dual", "bredr", "le" #ControllerMode = dual +# Enables Multi Profile Specification support. This allows to specify if +# system supports only MPSD or both MPSD/MPMD scenarios. +# Possible values: "mpsd", "mpmd" +#MultiProfile = mpsd + #[Policy] # # The ReconnectUUIDs defines the set of remote services that should try -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html