1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2020 SUSE LLC <mdoucha@suse.cz> 4 */ 5 6 #ifndef LAPI_IF_ETHER_H__ 7 #define LAPI_IF_ETHER_H__ 8 9 #include "config.h" 10 11 #ifdef HAVE_LINUX_IF_ETHER_H 12 # include <linux/if_ether.h> 13 #endif 14 15 #ifndef ETH_P_ALL 16 # define ETH_P_ALL 0x0003 17 #endif 18 19 #endif /* LAPI_IF_ETHER_H__ */ 20