1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #ifndef __NET_H__ 4 #define __NET_H__ 5 6 #include <net-common.h> 7 8 #if defined(CONFIG_NET_LWIP) 9 #include <net-lwip.h> 10 #else 11 #include <net-legacy.h> 12 #endif 13 14 #endif /* __NET_H__ */ 15