1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 05:54:58 +00: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

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