This allows to locally trigger disconnection. --- src/shared/hfp.c | 8 ++++++++ src/shared/hfp.h | 2 ++ 2 files changed, 10 insertions(+) diff --git a/src/shared/hfp.c b/src/shared/hfp.c index 3944e97..2c793f9 100644 --- a/src/shared/hfp.c +++ b/src/shared/hfp.c @@ -445,3 +445,11 @@ bool hfp_gw_set_disconnect_handler(struct hfp_gw *hfp, return true; } + +bool hfp_gw_disconnect(struct hfp_gw *hfp) +{ + if (!hfp) + return false; + + return io_shutdown(hfp->io); +} diff --git a/src/shared/hfp.h b/src/shared/hfp.h index 75ec484..5a86dfe 100644 --- a/src/shared/hfp.h +++ b/src/shared/hfp.h @@ -92,3 +92,5 @@ bool hfp_gw_set_disconnect_handler(struct hfp_gw *hfp, hfp_disconnect_func_t callback, void *user_data, hfp_destroy_func_t destroy); + +bool hfp_gw_disconnect(struct hfp_gw *hfp); -- 1.8.5.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