1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

LibC: Add the netinet/if_ether.h header and define ETH_ALEN

This header defines various constants related to ethernet packets,
with ETH_ALEN being the length of an ethernet address (which is needed
by some ports).
This commit is contained in:
Idan Horowitz 2021-12-05 01:37:56 +02:00 committed by Brian Gianforcaro
parent 3a1ff175e8
commit efb69508f4
Notes: sideshowbarker 2024-07-17 22:23:59 +09:00

View file

@ -0,0 +1,9 @@
/*
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#define ETH_ALEN 6 // Length of an ethernet address (MAC) in bytes