blob: afa46f239ee0594c802aee089f1b08749276b8b7 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001/* SPDX-License-Identifier: GPL-2.0 */
wdenk2d966952002-10-31 22:12:35 +00002
3#ifndef __NET_H__
4#define __NET_H__
5
Jerome Forissier64abd782024-10-16 12:04:00 +02006#include <net-common.h>
wdenk2d966952002-10-31 22:12:35 +00007
Jerome Forissier64abd782024-10-16 12:04:00 +02008#if defined(CONFIG_NET_LWIP)
9#include <net-lwip.h>
Claudiu Manoilc0566c22021-01-25 14:23:53 +020010#else
Jerome Forissier64abd782024-10-16 12:04:00 +020011#include <net-legacy.h>
stroesee0aadfb2003-08-28 14:17:32 +000012#endif
Masahisa Kojimae501ce12023-11-10 13:25:41 +090013
wdenk2d966952002-10-31 22:12:35 +000014#endif /* __NET_H__ */