ble_mesh: fix public key mismatch error handling
This commit is contained in:
parent
e020d1055a
commit
8fb20e4529
1 changed files with 5 additions and 2 deletions
|
@ -48,6 +48,9 @@
|
||||||
#define INPUT_OOB_NUMBER 0x02
|
#define INPUT_OOB_NUMBER 0x02
|
||||||
#define INPUT_OOB_STRING 0x03
|
#define INPUT_OOB_STRING 0x03
|
||||||
|
|
||||||
|
#define PUB_KEY_NO_OOB 0x00
|
||||||
|
#define PUB_KEY_OOB 0x01
|
||||||
|
|
||||||
#define PROV_ERR_NONE 0x00
|
#define PROV_ERR_NONE 0x00
|
||||||
#define PROV_ERR_NVAL_PDU 0x01
|
#define PROV_ERR_NVAL_PDU 0x01
|
||||||
#define PROV_ERR_NVAL_FMT 0x02
|
#define PROV_ERR_NVAL_FMT 0x02
|
||||||
|
@ -772,8 +775,8 @@ static void prov_start(const u8_t *data)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data[1] > 0x01) {
|
if (data[1] != prov->oob_pub_key) {
|
||||||
BT_ERR("%s, Invalid public key value: 0x%02x", __func__, data[1]);
|
BT_ERR("%s, Invalid public key type: 0x%02x", __func__, data[1]);
|
||||||
prov_send_fail_msg(PROV_ERR_NVAL_FMT);
|
prov_send_fail_msg(PROV_ERR_NVAL_FMT);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue