summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/lapi/if_ether.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/tests/include/lapi/if_ether.h')
-rw-r--r--src/kernel/tests/include/lapi/if_ether.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/kernel/tests/include/lapi/if_ether.h b/src/kernel/tests/include/lapi/if_ether.h
new file mode 100644
index 0000000..0e9a4fc
--- /dev/null
+++ b/src/kernel/tests/include/lapi/if_ether.h
@@ -0,0 +1,19 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (c) 2020 SUSE LLC <mdoucha@suse.cz>
+ */
+
+#ifndef __LAPI_IF_ETHER_H__
+#define __LAPI_IF_ETHER_H__
+
+#include "config.h"
+
+#ifdef HAVE_LINUX_IF_ETHER_H
+# include <linux/if_ether.h>
+#endif
+
+#ifndef ETH_P_ALL
+# define ETH_P_ALL 0x0003
+#endif
+
+#endif /* __LAPI_IF_ETHER_H__ */