diff options
author | Vikram Kandukuri <vkandukuri@atheros.com> | 2009-12-03 04:42:51 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-03 13:34:21 -0500 |
commit | cde9f807f003676862178a6f28b52c7d431511ed (patch) | |
tree | 88605527cc17c11787ab347d076733289aaff4cb | |
parent | c78ae283145d3a8799b2fb01650166a66af3bff8 (diff) |
Bluetooth: Fix handling of BNEP setup connection requests
According to BNEP test specification the proper response should be sent
for a setup connection request message after the BNEP connection setup
has been completed.
Signed-off-by: Vikram Kandukuri <vikram.kandukuri@atheros.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/bnep/core.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c index cafe9f54d841..29b1b220d6cf 100644 --- a/net/bluetooth/bnep/core.c +++ b/net/bluetooth/bnep/core.c | |||
@@ -230,7 +230,6 @@ static int bnep_rx_control(struct bnep_session *s, void *data, int len) | |||
230 | 230 | ||
231 | switch (cmd) { | 231 | switch (cmd) { |
232 | case BNEP_CMD_NOT_UNDERSTOOD: | 232 | case BNEP_CMD_NOT_UNDERSTOOD: |
233 | case BNEP_SETUP_CONN_REQ: | ||
234 | case BNEP_SETUP_CONN_RSP: | 233 | case BNEP_SETUP_CONN_RSP: |
235 | case BNEP_FILTER_NET_TYPE_RSP: | 234 | case BNEP_FILTER_NET_TYPE_RSP: |
236 | case BNEP_FILTER_MULTI_ADDR_RSP: | 235 | case BNEP_FILTER_MULTI_ADDR_RSP: |
@@ -245,6 +244,10 @@ static int bnep_rx_control(struct bnep_session *s, void *data, int len) | |||
245 | err = bnep_ctrl_set_mcfilter(s, data, len); | 244 | err = bnep_ctrl_set_mcfilter(s, data, len); |
246 | break; | 245 | break; |
247 | 246 | ||
247 | case BNEP_SETUP_CONN_REQ: | ||
248 | err = bnep_send_rsp(s, BNEP_SETUP_CONN_RSP, BNEP_CONN_NOT_ALLOWED); | ||
249 | break; | ||
250 | |||
248 | default: { | 251 | default: { |
249 | u8 pkt[3]; | 252 | u8 pkt[3]; |
250 | pkt[0] = BNEP_CONTROL; | 253 | pkt[0] = BNEP_CONTROL; |