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 18 extern struct net_if *ifa1; 19 extern struct net_if *ifa2; 20 extern struct net_if *ifb; 21 extern struct net_if *ifni; 22 extern struct net_if *ifnull; 23 extern struct net_if *ifnone; 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif /* ZEPHYR_INCLUDE_TEST_IFACES_H_ */ 30