From d5f14f8d65d884a04472c48c7ac8337676dc5a8e Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 6 Dec 2013 23:59:35 -0800 Subject: [PATCH] monitor: Add support for handling LE Ping feature --- monitor/ll.c | 2 ++ monitor/packet.c | 1 + 2 files changed, 3 insertions(+) diff --git a/monitor/ll.c b/monitor/ll.c index e8b7a7a65..1a66572b5 100644 --- a/monitor/ll.c +++ b/monitor/ll.c @@ -483,6 +483,8 @@ static const struct llcp_data llcp_table[] = { { 0x0b, "LL_PAUSE_ENC_RSP", null_pdu, 0, true }, { 0x0c, "LL_VERSION_IND", version_ind, 5, true }, { 0x0d, "LL_REJECT_IND", reject_ind, 1, true }, + { 0x12, "LL_PING_REQ", null_pdu, 0, true }, + { 0x13, "LL_PING_RSP", null_pdu, 0, true }, { } }; diff --git a/monitor/packet.c b/monitor/packet.c index 0efa60bce..334506539 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -1912,6 +1912,7 @@ static const struct features_data features_page2[] = { static const struct features_data features_le[] = { { 0, "LE Encryption" }, + { 4, "LE Ping" }, { } }; -- 2.47.3