1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_INCLUDE_TEST_IFACES_H_
8 #define ZEPHYR_INCLUDE_TEST_IFACES_H_
9 
10 #include <zephyr/net/net_if.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 /* Public accessors for static iface structs */
17 extern struct net_if *if_simp_a;
18 extern struct net_if *if_simp_b;
19 extern struct net_if *if_conn_a;
20 extern struct net_if *if_conn_b;
21 extern struct net_if *if_dummy_eth;
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif /* ZEPHYR_INCLUDE_TEST_IFACES_H_ */
28