12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef AUTH_STATUS_TRACKER_H__
- #define AUTH_STATUS_TRACKER_H__
- #include <stdint.h>
- #include "sdk_errors.h"
- #include "ble_gap.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- ret_code_t ast_init(void);
- void ast_auth_error_notify(uint16_t conn_handle);
- bool ast_peer_blacklisted(uint16_t conn_handle);
- #ifdef __cplusplus
- }
- #endif
- #endif
|