mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:38:11 +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:
parent
3a1ff175e8
commit
efb69508f4
1 changed files with 9 additions and 0 deletions
9
Userland/Libraries/LibC/netinet/if_ether.h
Normal file
9
Userland/Libraries/LibC/netinet/if_ether.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue