drivers/nble: Move conn.h functions from gap.c to conn.c
Change-Id: I123e51f02e474ba1b0b7ac195a0da5900b523a53 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
d72744984c
commit
d565ac5e1f
2 changed files with 26 additions and 26 deletions
|
@ -67,3 +67,29 @@ uint8_t bt_conn_enc_key_size(struct bt_conn *conn)
|
|||
void bt_conn_cb_register(struct bt_conn_cb *cb)
|
||||
{
|
||||
}
|
||||
|
||||
int bt_le_set_auto_conn(bt_addr_le_t *addr,
|
||||
const struct bt_le_conn_param *param)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_cb_register(const struct bt_auth_cb *cb)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_passkey_entry(struct bt_conn *conn, unsigned int passkey)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_cancel(struct bt_conn *conn)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_passkey_confirm(struct bt_conn *conn, bool match)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue