* [PATCH] network: Fix for TP_BNEP_CTRL_BV_01_C qualification test
@ 2011-03-14 13:18 Lukasz Rymanowski
2011-03-14 15:11 ` Johan Hedberg
0 siblings, 1 reply; 2+ messages in thread
From: Lukasz Rymanowski @ 2011-03-14 13:18 UTC (permalink / raw)
To: linux-bluetooth; +Cc: par-gunnar.p.hjalmdahl, henrik.possung, Lukasz Rymanowski
With this fix network plugin will correctly respond on unknown
BNEP control command.
---
network/server.c | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/network/server.c b/network/server.c
index 7c63c3e..d1da8a9 100644
--- a/network/server.c
+++ b/network/server.c
@@ -394,6 +394,21 @@ static gboolean bnep_setup(GIOChannel *chan,
return FALSE;
}
+ /* Highest known Control command ID
+ * is BNEP_FILTER_MULT_ADDR_RSP = 0x06 */
+ if (req->type == BNEP_CONTROL &&
+ req->ctrl > BNEP_FILTER_MULT_ADDR_RSP) {
+ uint8_t pkt[3];
+
+ pkt[0] = BNEP_CONTROL;
+ pkt[1] = BNEP_CMD_NOT_UNDERSTOOD;
+ pkt[2] = req->ctrl;
+
+ send(sk, pkt, sizeof(pkt), 0);
+
+ return FALSE;
+ }
+
if (req->type != BNEP_CONTROL || req->ctrl != BNEP_SETUP_CONN_REQ)
return FALSE;
--
1.7.0.4
On behalf of ST-Ericsson.
/Lukasz
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-14 15:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-14 13:18 [PATCH] network: Fix for TP_BNEP_CTRL_BV_01_C qualification test Lukasz Rymanowski
2011-03-14 15:11 ` Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox