mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
efb69508f4
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).
9 lines
201 B
C
9 lines
201 B
C
/*
|
|
* 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
|