1// Copyright 2020 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep
6// them here for backwards compatibility.
7
8package unix
9
10const (
11	DLT_HHDLC            = 0x79
12	IPV6_MIN_MEMBERSHIPS = 0x1f
13	IP_MAX_SOURCE_FILTER = 0x400
14	IP_MIN_MEMBERSHIPS   = 0x1f
15	RT_CACHING_CONTEXT   = 0x1
16	RT_NORTREF           = 0x2
17)
18