1 /** 2 * Copyright (c) 2018 Linaro Limited. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_DRIVERS_WIFI_SIMPLELINK_SIMPLELINK_SOCKETS_H_ 8 #define ZEPHYR_DRIVERS_WIFI_SIMPLELINK_SIMPLELINK_SOCKETS_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 extern const struct socket_dns_offload simplelink_dns_ops; 15 extern void simplelink_sockets_init(void); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif /* ZEPHYR_DRIVERS_WIFI_SIMPLELINK_SIMPLELINK_SOCKETS_H_ */ 22