Hello again, Here's v9 of the ASHA plugin patchset. Changes include: * Switch to btio API to connect socket -- this makes the connection async, so we don't tie up the mainloop for longer/erroneous connections * Minor fixups based on CI/lint * Trivial gitignore changes are already merged Cheers, Arun Arun Raghavan (3): src/shared: Add initial implementation for an ASHA profile profiles/audio: Add an ASHA plugin test: Add a script to test ASHA Makefile.am | 3 +- Makefile.plugins | 5 + configure.ac | 4 + lib/uuid.h | 3 + profiles/audio/asha.c | 524 +++++++++++++++++++++++++++++++++++++ profiles/audio/asha.h | 38 +++ profiles/audio/media.c | 30 +++ profiles/audio/media.h | 2 + profiles/audio/transport.c | 201 +++++++++++++- src/shared/asha.c | 360 +++++++++++++++++++++++++ src/shared/asha.h | 63 +++++ test/simple-asha | 166 ++++++++++++ 12 files changed, 1396 insertions(+), 3 deletions(-) create mode 100644 profiles/audio/asha.c create mode 100644 profiles/audio/asha.h create mode 100644 src/shared/asha.c create mode 100644 src/shared/asha.h create mode 100755 test/simple-asha -- 2.45.2