1 /*
2  * Copyright (c) 2023 Codecoup
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef MOCKS_CONN_H_
8 #define MOCKS_CONN_H_
9 
10 #include <zephyr/bluetooth/conn.h>
11 
12 struct bt_conn {
13 	uint8_t index;
14 	struct bt_conn_info info;
15 	struct bt_iso_chan *chan;
16 };
17 
18 void mock_bt_conn_disconnected(struct bt_conn *conn, uint8_t err);
19 
20 #endif /* MOCKS_CONN_H_ */
21