Return-Path: MIME-Version: 1.0 From: Vinicius Costa Gomes To: linux-bluetooth@vger.kernel.org Cc: Vinicius Costa Gomes Subject: [PATCH BlueZ v3 4/6] test: Add support for btiotest to returning the key size Date: Tue, 24 Jan 2012 10:57:21 -0300 Message-Id: <1327413443-26375-4-git-send-email-vinicius.gomes@openbossa.org> In-Reply-To: <1327413443-26375-1-git-send-email-vinicius.gomes@openbossa.org> References: <1327413443-26375-1-git-send-email-vinicius.gomes@openbossa.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- test/btiotest.c | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/test/btiotest.c b/test/btiotest.c index f02711d..03f026d 100644 --- a/test/btiotest.c +++ b/test/btiotest.c @@ -135,6 +135,19 @@ static void connect_cb(GIOChannel *io, GError *err, gpointer user_data) printf("imtu=%u, omtu=%u\n", imtu, omtu); } + if (data->type == BT_IO_L2CAP) { + uint8_t key_size; + + if (!bt_io_get(io, data->type, &err, + BT_IO_OPT_KEY_SIZE, &key_size, + BT_IO_OPT_INVALID)) { + printf("Unable to get L2CAP Key size: %s\n", + err->message); + g_clear_error(&err); + } else + printf("key_size=%u\n", key_size); + } + if (data->disconn == 0) { g_io_channel_shutdown(io, TRUE, NULL); printf("Disconnected\n"); -- 1.7.8.1