Bluetooth: Add bt_conn prefix for auth APIs
All of the authentication APIs deal with bt_conn objects. For consistency it makes therefore sense to use the proper bt_conn name space with them. Change-Id: I47912d542373df511524cc6ad2532d6c9a76ca68 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
d565ac5e1f
commit
bc073cdb59
9 changed files with 44 additions and 44 deletions
|
@ -74,22 +74,22 @@ int bt_le_set_auto_conn(bt_addr_le_t *addr,
|
|||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_cb_register(const struct bt_auth_cb *cb)
|
||||
int bt_conn_auth_cb_register(const struct bt_conn_auth_cb *cb)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_passkey_entry(struct bt_conn *conn, unsigned int passkey)
|
||||
int bt_conn_auth_passkey_entry(struct bt_conn *conn, unsigned int passkey)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_cancel(struct bt_conn *conn)
|
||||
int bt_conn_auth_cancel(struct bt_conn *conn)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
int bt_auth_passkey_confirm(struct bt_conn *conn, bool match)
|
||||
int bt_conn_auth_passkey_confirm(struct bt_conn *conn, bool match)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue