mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-12 06:24:10 +01:00
12 lines
235 B
Go
12 lines
235 B
Go
// SPDX-FileCopyrightText: 2022 Free Mobile
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package helpers
|
|
|
|
const (
|
|
// ETypeIPv4 is the ether type for IPv4
|
|
ETypeIPv4 = 0x800
|
|
// ETypeIPv6 is the ether type for IPv6
|
|
ETypeIPv6 = 0x86dd
|
|
)
|