Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Sep 2021 13:52:42 GMT
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 8ecbf2d4cca1 - main - sysutils/nomad-pot-driver: Garbage collect aarch64 patches
Message-ID:  <202109091352.189Dqgme090174@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mikael:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8ecbf2d4cca108c7122f55216dbcfc5ddb86a437

commit 8ecbf2d4cca108c7122f55216dbcfc5ddb86a437
Author:     Mikael Urankar <mikael@FreeBSD.org>
AuthorDate: 2021-09-09 13:44:57 +0000
Commit:     Mikael Urankar <mikael@FreeBSD.org>
CommitDate: 2021-09-09 13:52:38 +0000

    sysutils/nomad-pot-driver: Garbage collect aarch64 patches
    
    The golang.org/x/sys/unix module was updated and contains the FreeBSD aarch64 bits.
    
    Approved by:    portmgr (build fix blanket)
---
 ...dor_golang.org_x_sys_unix_asm__freebsd__arm64.s |   32 -
 ...olang.org_x_sys_unix_syscall__freebsd__arm64.go |   55 -
 ...olang.org_x_sys_unix_zerrors__freebsd__arm64.go | 1768 ------------------
 ...lang.org_x_sys_unix_zsyscall__freebsd__arm64.go | 1940 --------------------
 ...olang.org_x_sys_unix_zsysnum__freebsd__arm64.go |  356 ----
 ...golang.org_x_sys_unix_ztypes__freebsd__arm64.go |  559 ------
 6 files changed, 4710 deletions(-)

diff --git a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_asm__freebsd__arm64.s b/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_asm__freebsd__arm64.s
deleted file mode 100644
index 3687bb016b48..000000000000
--- a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_asm__freebsd__arm64.s
+++ /dev/null
@@ -1,32 +0,0 @@
---- vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s.orig	2021-05-28 13:32:52 UTC
-+++ vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s
-@@ -0,0 +1,29 @@
-+// Copyright 2018 The Go Authors. All rights reserved.
-+// Use of this source code is governed by a BSD-style
-+// license that can be found in the LICENSE file.
-+
-+// +build !gccgo
-+
-+#include "textflag.h"
-+
-+//
-+// System call support for ARM64, FreeBSD
-+//
-+
-+// Just jump to package syscall's implementation for all these functions.
-+// The runtime may know about them.
-+
-+TEXT	·Syscall(SB),NOSPLIT,$0-56
-+	JMP	syscall·Syscall(SB)
-+
-+TEXT	·Syscall6(SB),NOSPLIT,$0-80
-+	JMP	syscall·Syscall6(SB)
-+
-+TEXT	·Syscall9(SB),NOSPLIT,$0-104
-+	JMP	syscall·Syscall9(SB)
-+
-+TEXT ·RawSyscall(SB),NOSPLIT,$0-56
-+	JMP	syscall·RawSyscall(SB)
-+
-+TEXT	·RawSyscall6(SB),NOSPLIT,$0-80
-+	JMP	syscall·RawSyscall6(SB)
diff --git a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_syscall__freebsd__arm64.go b/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_syscall__freebsd__arm64.go
deleted file mode 100644
index dc9608900784..000000000000
--- a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_syscall__freebsd__arm64.go
+++ /dev/null
@@ -1,55 +0,0 @@
---- vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go.orig	2021-05-28 13:32:52 UTC
-+++ vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go
-@@ -0,0 +1,52 @@
-+// Copyright 2018 The Go Authors. All rights reserved.
-+// Use of this source code is governed by a BSD-style
-+// license that can be found in the LICENSE file.
-+
-+// +build arm64,freebsd
-+
-+package unix
-+
-+import (
-+	"syscall"
-+	"unsafe"
-+)
-+
-+func setTimespec(sec, nsec int64) Timespec {
-+	return Timespec{Sec: sec, Nsec: nsec}
-+}
-+
-+func setTimeval(sec, usec int64) Timeval {
-+	return Timeval{Sec: sec, Usec: usec}
-+}
-+
-+func SetKevent(k *Kevent_t, fd, mode, flags int) {
-+	k.Ident = uint64(fd)
-+	k.Filter = int16(mode)
-+	k.Flags = uint16(flags)
-+}
-+
-+func (iov *Iovec) SetLen(length int) {
-+	iov.Len = uint64(length)
-+}
-+
-+func (msghdr *Msghdr) SetControllen(length int) {
-+	msghdr.Controllen = uint32(length)
-+}
-+
-+func (cmsg *Cmsghdr) SetLen(length int) {
-+	cmsg.Len = uint32(length)
-+}
-+
-+func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
-+	var writtenOut uint64 = 0
-+	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
-+
-+	written = int(writtenOut)
-+
-+	if e1 != 0 {
-+		err = e1
-+	}
-+	return
-+}
-+
-+func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
diff --git a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_zerrors__freebsd__arm64.go b/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_zerrors__freebsd__arm64.go
deleted file mode 100644
index 1e8a9e396eb7..000000000000
--- a/sysutils/nomad-pot-driver/files/patch-vendor_golang.org_x_sys_unix_zerrors__freebsd__arm64.go
+++ /dev/null
@@ -1,1768 +0,0 @@
---- vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go.orig	2021-05-28 13:32:52 UTC
-+++ vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go
-@@ -0,0 +1,1765 @@
-+// mkerrors.sh -m64
-+// Code generated by the command above; see README.md. DO NOT EDIT.
-+
-+// +build arm64,freebsd
-+
-+// Created by cgo -godefs - DO NOT EDIT
-+// cgo -godefs -- -m64 _const.go
-+
-+package unix
-+
-+import "syscall"
-+
-+const (
-+	AF_APPLETALK                   = 0x10
-+	AF_ARP                         = 0x23
-+	AF_ATM                         = 0x1e
-+	AF_BLUETOOTH                   = 0x24
-+	AF_CCITT                       = 0xa
-+	AF_CHAOS                       = 0x5
-+	AF_CNT                         = 0x15
-+	AF_COIP                        = 0x14
-+	AF_DATAKIT                     = 0x9
-+	AF_DECnet                      = 0xc
-+	AF_DLI                         = 0xd
-+	AF_E164                        = 0x1a
-+	AF_ECMA                        = 0x8
-+	AF_HYLINK                      = 0xf
-+	AF_IEEE80211                   = 0x25
-+	AF_IMPLINK                     = 0x3
-+	AF_INET                        = 0x2
-+	AF_INET6                       = 0x1c
-+	AF_INET6_SDP                   = 0x2a
-+	AF_INET_SDP                    = 0x28
-+	AF_IPX                         = 0x17
-+	AF_ISDN                        = 0x1a
-+	AF_ISO                         = 0x7
-+	AF_LAT                         = 0xe
-+	AF_LINK                        = 0x12
-+	AF_LOCAL                       = 0x1
-+	AF_MAX                         = 0x2a
-+	AF_NATM                        = 0x1d
-+	AF_NETBIOS                     = 0x6
-+	AF_NETGRAPH                    = 0x20
-+	AF_OSI                         = 0x7
-+	AF_PUP                         = 0x4
-+	AF_ROUTE                       = 0x11
-+	AF_SCLUSTER                    = 0x22
-+	AF_SIP                         = 0x18
-+	AF_SLOW                        = 0x21
-+	AF_SNA                         = 0xb
-+	AF_UNIX                        = 0x1
-+	AF_UNSPEC                      = 0x0
-+	AF_VENDOR00                    = 0x27
-+	AF_VENDOR01                    = 0x29
-+	AF_VENDOR02                    = 0x2b
-+	AF_VENDOR03                    = 0x2d
-+	AF_VENDOR04                    = 0x2f
-+	AF_VENDOR05                    = 0x31
-+	AF_VENDOR06                    = 0x33
-+	AF_VENDOR07                    = 0x35
-+	AF_VENDOR08                    = 0x37
-+	AF_VENDOR09                    = 0x39
-+	AF_VENDOR10                    = 0x3b
-+	AF_VENDOR11                    = 0x3d
-+	AF_VENDOR12                    = 0x3f
-+	AF_VENDOR13                    = 0x41
-+	AF_VENDOR14                    = 0x43
-+	AF_VENDOR15                    = 0x45
-+	AF_VENDOR16                    = 0x47
-+	AF_VENDOR17                    = 0x49
-+	AF_VENDOR18                    = 0x4b
-+	AF_VENDOR19                    = 0x4d
-+	AF_VENDOR20                    = 0x4f
-+	AF_VENDOR21                    = 0x51
-+	AF_VENDOR22                    = 0x53
-+	AF_VENDOR23                    = 0x55
-+	AF_VENDOR24                    = 0x57
-+	AF_VENDOR25                    = 0x59
-+	AF_VENDOR26                    = 0x5b
-+	AF_VENDOR27                    = 0x5d
-+	AF_VENDOR28                    = 0x5f
-+	AF_VENDOR29                    = 0x61
-+	AF_VENDOR30                    = 0x63
-+	AF_VENDOR31                    = 0x65
-+	AF_VENDOR32                    = 0x67
-+	AF_VENDOR33                    = 0x69
-+	AF_VENDOR34                    = 0x6b
-+	AF_VENDOR35                    = 0x6d
-+	AF_VENDOR36                    = 0x6f
-+	AF_VENDOR37                    = 0x71
-+	AF_VENDOR38                    = 0x73
-+	AF_VENDOR39                    = 0x75
-+	AF_VENDOR40                    = 0x77
-+	AF_VENDOR41                    = 0x79
-+	AF_VENDOR42                    = 0x7b
-+	AF_VENDOR43                    = 0x7d
-+	AF_VENDOR44                    = 0x7f
-+	AF_VENDOR45                    = 0x81
-+	AF_VENDOR46                    = 0x83
-+	AF_VENDOR47                    = 0x85
-+	ALTWERASE                      = 0x200
-+	B0                             = 0x0
-+	B110                           = 0x6e
-+	B115200                        = 0x1c200
-+	B1200                          = 0x4b0
-+	B134                           = 0x86
-+	B14400                         = 0x3840
-+	B150                           = 0x96
-+	B1800                          = 0x708
-+	B19200                         = 0x4b00
-+	B200                           = 0xc8
-+	B230400                        = 0x38400
-+	B2400                          = 0x960
-+	B28800                         = 0x7080
-+	B300                           = 0x12c
-+	B38400                         = 0x9600
-+	B460800                        = 0x70800
-+	B4800                          = 0x12c0
-+	B50                            = 0x32
-+	B57600                         = 0xe100
-+	B600                           = 0x258
-+	B7200                          = 0x1c20
-+	B75                            = 0x4b
-+	B76800                         = 0x12c00
-+	B921600                        = 0xe1000
-+	B9600                          = 0x2580
-+	BIOCFEEDBACK                   = 0x8004427c
-+	BIOCFLUSH                      = 0x20004268
-+	BIOCGBLEN                      = 0x40044266
-+	BIOCGDIRECTION                 = 0x40044276
-+	BIOCGDLT                       = 0x4004426a
-+	BIOCGDLTLIST                   = 0xc0104279
-+	BIOCGETBUFMODE                 = 0x4004427d
-+	BIOCGETIF                      = 0x4020426b
-+	BIOCGETZMAX                    = 0x4008427f
-+	BIOCGHDRCMPLT                  = 0x40044274
-+	BIOCGRSIG                      = 0x40044272
-+	BIOCGRTIMEOUT                  = 0x4010426e
-+	BIOCGSEESENT                   = 0x40044276
-+	BIOCGSTATS                     = 0x4008426f
-+	BIOCGTSTAMP                    = 0x40044283
-+	BIOCIMMEDIATE                  = 0x80044270
-+	BIOCLOCK                       = 0x2000427a
-+	BIOCPROMISC                    = 0x20004269
-+	BIOCROTZBUF                    = 0x40184280
-+	BIOCSBLEN                      = 0xc0044266
-+	BIOCSDIRECTION                 = 0x80044277
-+	BIOCSDLT                       = 0x80044278
-+	BIOCSETBUFMODE                 = 0x8004427e
-+	BIOCSETF                       = 0x80104267
-+	BIOCSETFNR                     = 0x80104282
-+	BIOCSETIF                      = 0x8020426c
-+	BIOCSETWF                      = 0x8010427b
-+	BIOCSETZBUF                    = 0x80184281
-+	BIOCSHDRCMPLT                  = 0x80044275
-+	BIOCSRSIG                      = 0x80044273
-+	BIOCSRTIMEOUT                  = 0x8010426d
-+	BIOCSSEESENT                   = 0x80044277
-+	BIOCSTSTAMP                    = 0x80044284
-+	BIOCVERSION                    = 0x40044271
-+	BPF_A                          = 0x10
-+	BPF_ABS                        = 0x20
-+	BPF_ADD                        = 0x0
-+	BPF_ALIGNMENT                  = 0x8
-+	BPF_ALU                        = 0x4
-+	BPF_AND                        = 0x50
-+	BPF_B                          = 0x10
-+	BPF_BUFMODE_BUFFER             = 0x1
-+	BPF_BUFMODE_ZBUF               = 0x2
-+	BPF_DIV                        = 0x30
-+	BPF_H                          = 0x8
-+	BPF_IMM                        = 0x0
-+	BPF_IND                        = 0x40
-+	BPF_JA                         = 0x0
-+	BPF_JEQ                        = 0x10
-+	BPF_JGE                        = 0x30
-+	BPF_JGT                        = 0x20
-+	BPF_JMP                        = 0x5
-+	BPF_JSET                       = 0x40
-+	BPF_K                          = 0x0
-+	BPF_LD                         = 0x0
-+	BPF_LDX                        = 0x1
-+	BPF_LEN                        = 0x80
-+	BPF_LSH                        = 0x60
-+	BPF_MAJOR_VERSION              = 0x1
-+	BPF_MAXBUFSIZE                 = 0x80000
-+	BPF_MAXINSNS                   = 0x200
-+	BPF_MEM                        = 0x60
-+	BPF_MEMWORDS                   = 0x10
-+	BPF_MINBUFSIZE                 = 0x20
-+	BPF_MINOR_VERSION              = 0x1
-+	BPF_MISC                       = 0x7
-+	BPF_MOD                        = 0x90
-+	BPF_MSH                        = 0xa0
-+	BPF_MUL                        = 0x20
-+	BPF_NEG                        = 0x80
-+	BPF_OR                         = 0x40
-+	BPF_RELEASE                    = 0x30bb6
-+	BPF_RET                        = 0x6
-+	BPF_RSH                        = 0x70
-+	BPF_ST                         = 0x2
-+	BPF_STX                        = 0x3
-+	BPF_SUB                        = 0x10
-+	BPF_TAX                        = 0x0
-+	BPF_TXA                        = 0x80
-+	BPF_T_BINTIME                  = 0x2
-+	BPF_T_BINTIME_FAST             = 0x102
-+	BPF_T_BINTIME_MONOTONIC        = 0x202
-+	BPF_T_BINTIME_MONOTONIC_FAST   = 0x302
-+	BPF_T_FAST                     = 0x100
-+	BPF_T_FLAG_MASK                = 0x300
-+	BPF_T_FORMAT_MASK              = 0x3
-+	BPF_T_MICROTIME                = 0x0
-+	BPF_T_MICROTIME_FAST           = 0x100
-+	BPF_T_MICROTIME_MONOTONIC      = 0x200
-+	BPF_T_MICROTIME_MONOTONIC_FAST = 0x300
-+	BPF_T_MONOTONIC                = 0x200
-+	BPF_T_MONOTONIC_FAST           = 0x300
-+	BPF_T_NANOTIME                 = 0x1
-+	BPF_T_NANOTIME_FAST            = 0x101
-+	BPF_T_NANOTIME_MONOTONIC       = 0x201
-+	BPF_T_NANOTIME_MONOTONIC_FAST  = 0x301
-+	BPF_T_NONE                     = 0x3
-+	BPF_T_NORMAL                   = 0x0
-+	BPF_W                          = 0x0
-+	BPF_X                          = 0x8
-+	BPF_XOR                        = 0xa0
-+	BRKINT                         = 0x2
-+	CAP_ACCEPT                     = 0x200000020000000
-+	CAP_ACL_CHECK                  = 0x400000000010000
-+	CAP_ACL_DELETE                 = 0x400000000020000
-+	CAP_ACL_GET                    = 0x400000000040000
-+	CAP_ACL_SET                    = 0x400000000080000
-+	CAP_ALL0                       = 0x20007ffffffffff
-+	CAP_ALL1                       = 0x4000000001fffff
-+	CAP_BIND                       = 0x200000040000000
-+	CAP_BINDAT                     = 0x200008000000400
-+	CAP_CHFLAGSAT                  = 0x200000000001400
-+	CAP_CONNECT                    = 0x200000080000000
-+	CAP_CONNECTAT                  = 0x200010000000400
-+	CAP_CREATE                     = 0x200000000000040
-+	CAP_EVENT                      = 0x400000000000020
-+	CAP_EXTATTR_DELETE             = 0x400000000001000
-+	CAP_EXTATTR_GET                = 0x400000000002000
-+	CAP_EXTATTR_LIST               = 0x400000000004000
-+	CAP_EXTATTR_SET                = 0x400000000008000
-+	CAP_FCHDIR                     = 0x200000000000800
-+	CAP_FCHFLAGS                   = 0x200000000001000
-+	CAP_FCHMOD                     = 0x200000000002000
-+	CAP_FCHMODAT                   = 0x200000000002400
-+	CAP_FCHOWN                     = 0x200000000004000
-+	CAP_FCHOWNAT                   = 0x200000000004400
-+	CAP_FCNTL                      = 0x200000000008000
-+	CAP_FCNTL_ALL                  = 0x78
-+	CAP_FCNTL_GETFL                = 0x8
-+	CAP_FCNTL_GETOWN               = 0x20
-+	CAP_FCNTL_SETFL                = 0x10
-+	CAP_FCNTL_SETOWN               = 0x40
-+	CAP_FEXECVE                    = 0x200000000000080
-+	CAP_FLOCK                      = 0x200000000010000
-+	CAP_FPATHCONF                  = 0x200000000020000
-+	CAP_FSCK                       = 0x200000000040000
-+	CAP_FSTAT                      = 0x200000000080000
-+	CAP_FSTATAT                    = 0x200000000080400
-+	CAP_FSTATFS                    = 0x200000000100000
-+	CAP_FSYNC                      = 0x200000000000100
-+	CAP_FTRUNCATE                  = 0x200000000000200
-+	CAP_FUTIMES                    = 0x200000000200000
-+	CAP_FUTIMESAT                  = 0x200000000200400
-+	CAP_GETPEERNAME                = 0x200000100000000
-+	CAP_GETSOCKNAME                = 0x200000200000000
-+	CAP_GETSOCKOPT                 = 0x200000400000000
-+	CAP_IOCTL                      = 0x400000000000080
-+	CAP_IOCTLS_ALL                 = 0x7fffffffffffffff
-+	CAP_KQUEUE                     = 0x400000000100040
-+	CAP_KQUEUE_CHANGE              = 0x400000000100000
-+	CAP_KQUEUE_EVENT               = 0x400000000000040
-+	CAP_LINKAT_SOURCE              = 0x200020000000400
-+	CAP_LINKAT_TARGET              = 0x200000000400400
-+	CAP_LISTEN                     = 0x200000800000000
-+	CAP_LOOKUP                     = 0x200000000000400
-+	CAP_MAC_GET                    = 0x400000000000001
-+	CAP_MAC_SET                    = 0x400000000000002
-+	CAP_MKDIRAT                    = 0x200000000800400
-+	CAP_MKFIFOAT                   = 0x200000001000400
-+	CAP_MKNODAT                    = 0x200000002000400
-+	CAP_MMAP                       = 0x200000000000010
-+	CAP_MMAP_R                     = 0x20000000000001d
-+	CAP_MMAP_RW                    = 0x20000000000001f
-+	CAP_MMAP_RWX                   = 0x20000000000003f
-+	CAP_MMAP_RX                    = 0x20000000000003d
-+	CAP_MMAP_W                     = 0x20000000000001e
-+	CAP_MMAP_WX                    = 0x20000000000003e
-+	CAP_MMAP_X                     = 0x20000000000003c
-+	CAP_PDGETPID                   = 0x400000000000200
-+	CAP_PDKILL                     = 0x400000000000800
-+	CAP_PDWAIT                     = 0x400000000000400
-+	CAP_PEELOFF                    = 0x200001000000000
-+	CAP_POLL_EVENT                 = 0x400000000000020
-+	CAP_PREAD                      = 0x20000000000000d
-+	CAP_PWRITE                     = 0x20000000000000e
-+	CAP_READ                       = 0x200000000000001
-+	CAP_RECV                       = 0x200000000000001
-+	CAP_RENAMEAT_SOURCE            = 0x200000004000400
-+	CAP_RENAMEAT_TARGET            = 0x200040000000400
-+	CAP_RIGHTS_VERSION             = 0x0
-+	CAP_RIGHTS_VERSION_00          = 0x0
-+	CAP_SEEK                       = 0x20000000000000c
-+	CAP_SEEK_TELL                  = 0x200000000000004
-+	CAP_SEM_GETVALUE               = 0x400000000000004
-+	CAP_SEM_POST                   = 0x400000000000008
-+	CAP_SEM_WAIT                   = 0x400000000000010
-+	CAP_SEND                       = 0x200000000000002
-+	CAP_SETSOCKOPT                 = 0x200002000000000
-+	CAP_SHUTDOWN                   = 0x200004000000000
-+	CAP_SOCK_CLIENT                = 0x200007780000003
-+	CAP_SOCK_SERVER                = 0x200007f60000003
-+	CAP_SYMLINKAT                  = 0x200000008000400
-+	CAP_TTYHOOK                    = 0x400000000000100
-+	CAP_UNLINKAT                   = 0x200000010000400
-+	CAP_UNUSED0_44                 = 0x200080000000000
-+	CAP_UNUSED0_57                 = 0x300000000000000
-+	CAP_UNUSED1_22                 = 0x400000000200000
-+	CAP_UNUSED1_57                 = 0x500000000000000
-+	CAP_WRITE                      = 0x200000000000002
-+	CFLUSH                         = 0xf
-+	CLOCAL                         = 0x8000
-+	CLOCK_MONOTONIC                = 0x4
-+	CLOCK_MONOTONIC_FAST           = 0xc
-+	CLOCK_MONOTONIC_PRECISE        = 0xb
-+	CLOCK_PROCESS_CPUTIME_ID       = 0xf
-+	CLOCK_PROF                     = 0x2
-+	CLOCK_REALTIME                 = 0x0
-+	CLOCK_REALTIME_FAST            = 0xa
-+	CLOCK_REALTIME_PRECISE         = 0x9
-+	CLOCK_SECOND                   = 0xd
-+	CLOCK_THREAD_CPUTIME_ID        = 0xe
-+	CLOCK_UPTIME                   = 0x5
-+	CLOCK_UPTIME_FAST              = 0x8
-+	CLOCK_UPTIME_PRECISE           = 0x7
-+	CLOCK_VIRTUAL                  = 0x1
-+	CREAD                          = 0x800
-+	CRTSCTS                        = 0x30000
-+	CS5                            = 0x0
-+	CS6                            = 0x100
-+	CS7                            = 0x200
-+	CS8                            = 0x300
-+	CSIZE                          = 0x300
-+	CSTART                         = 0x11
-+	CSTATUS                        = 0x14
-+	CSTOP                          = 0x13
-+	CSTOPB                         = 0x400
-+	CSUSP                          = 0x1a
-+	CTL_HW                         = 0x6
-+	CTL_KERN                       = 0x1
-+	CTL_MAXNAME                    = 0x18
-+	CTL_NET                        = 0x4
-+	DLT_A429                       = 0xb8
-+	DLT_A653_ICM                   = 0xb9
-+	DLT_AIRONET_HEADER             = 0x78
-+	DLT_AOS                        = 0xde
-+	DLT_APPLE_IP_OVER_IEEE1394     = 0x8a
-+	DLT_ARCNET                     = 0x7
-+	DLT_ARCNET_LINUX               = 0x81
-+	DLT_ATM_CLIP                   = 0x13
-+	DLT_ATM_RFC1483                = 0xb
-+	DLT_AURORA                     = 0x7e
-+	DLT_AX25                       = 0x3
-+	DLT_AX25_KISS                  = 0xca
-+	DLT_BACNET_MS_TP               = 0xa5
-+	DLT_BLUETOOTH_BREDR_BB         = 0xff
-+	DLT_BLUETOOTH_HCI_H4           = 0xbb
-+	DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9
-+	DLT_BLUETOOTH_LE_LL            = 0xfb
-+	DLT_BLUETOOTH_LE_LL_WITH_PHDR  = 0x100
-+	DLT_BLUETOOTH_LINUX_MONITOR    = 0xfe
-+	DLT_CAN20B                     = 0xbe
-+	DLT_CAN_SOCKETCAN              = 0xe3
-+	DLT_CHAOS                      = 0x5
-+	DLT_CHDLC                      = 0x68
-+	DLT_CISCO_IOS                  = 0x76
-+	DLT_C_HDLC                     = 0x68
-+	DLT_C_HDLC_WITH_DIR            = 0xcd
-+	DLT_DBUS                       = 0xe7
-+	DLT_DECT                       = 0xdd
-+	DLT_DOCSIS                     = 0x8f
-+	DLT_DVB_CI                     = 0xeb
-+	DLT_ECONET                     = 0x73
-+	DLT_EN10MB                     = 0x1
-+	DLT_EN3MB                      = 0x2
-+	DLT_ENC                        = 0x6d
-+	DLT_EPON                       = 0x103
-+	DLT_ERF                        = 0xc5
-+	DLT_ERF_ETH                    = 0xaf
-+	DLT_ERF_POS                    = 0xb0
-+	DLT_FC_2                       = 0xe0
-+	DLT_FC_2_WITH_FRAME_DELIMS     = 0xe1
-+	DLT_FDDI                       = 0xa
-+	DLT_FLEXRAY                    = 0xd2
-+	DLT_FRELAY                     = 0x6b
-+	DLT_FRELAY_WITH_DIR            = 0xce
-+	DLT_GCOM_SERIAL                = 0xad
-+	DLT_GCOM_T1E1                  = 0xac
-+	DLT_GPF_F                      = 0xab
-+	DLT_GPF_T                      = 0xaa
-+	DLT_GPRS_LLC                   = 0xa9
-+	DLT_GSMTAP_ABIS                = 0xda
-+	DLT_GSMTAP_UM                  = 0xd9
-+	DLT_HHDLC                      = 0x79
-+	DLT_IBM_SN                     = 0x92
-+	DLT_IBM_SP                     = 0x91
-+	DLT_IEEE802                    = 0x6
-+	DLT_IEEE802_11                 = 0x69
-+	DLT_IEEE802_11_RADIO           = 0x7f
-+	DLT_IEEE802_11_RADIO_AVS       = 0xa3
-+	DLT_IEEE802_15_4               = 0xc3
-+	DLT_IEEE802_15_4_LINUX         = 0xbf
-+	DLT_IEEE802_15_4_NOFCS         = 0xe6
-+	DLT_IEEE802_15_4_NONASK_PHY    = 0xd7
-+	DLT_IEEE802_16_MAC_CPS         = 0xbc
-+	DLT_IEEE802_16_MAC_CPS_RADIO   = 0xc1
-+	DLT_INFINIBAND                 = 0xf7
-+	DLT_IPFILTER                   = 0x74
-+	DLT_IPMB                       = 0xc7
-+	DLT_IPMB_LINUX                 = 0xd1
-+	DLT_IPMI_HPM_2                 = 0x104
-+	DLT_IPNET                      = 0xe2
-+	DLT_IPOIB                      = 0xf2
-+	DLT_IPV4                       = 0xe4
-+	DLT_IPV6                       = 0xe5
-+	DLT_IP_OVER_FC                 = 0x7a
-+	DLT_JUNIPER_ATM1               = 0x89
-+	DLT_JUNIPER_ATM2               = 0x87
-+	DLT_JUNIPER_ATM_CEMIC          = 0xee
-+	DLT_JUNIPER_CHDLC              = 0xb5
-+	DLT_JUNIPER_ES                 = 0x84
-+	DLT_JUNIPER_ETHER              = 0xb2
-+	DLT_JUNIPER_FIBRECHANNEL       = 0xea
-+	DLT_JUNIPER_FRELAY             = 0xb4
-+	DLT_JUNIPER_GGSN               = 0x85
-+	DLT_JUNIPER_ISM                = 0xc2
-+	DLT_JUNIPER_MFR                = 0x86
-+	DLT_JUNIPER_MLFR               = 0x83
-+	DLT_JUNIPER_MLPPP              = 0x82
-+	DLT_JUNIPER_MONITOR            = 0xa4
-+	DLT_JUNIPER_PIC_PEER           = 0xae
-+	DLT_JUNIPER_PPP                = 0xb3
-+	DLT_JUNIPER_PPPOE              = 0xa7
-+	DLT_JUNIPER_PPPOE_ATM          = 0xa8
-+	DLT_JUNIPER_SERVICES           = 0x88
-+	DLT_JUNIPER_SRX_E2E            = 0xe9
-+	DLT_JUNIPER_ST                 = 0xc8
-+	DLT_JUNIPER_VP                 = 0xb7
-+	DLT_JUNIPER_VS                 = 0xe8
-+	DLT_LAPB_WITH_DIR              = 0xcf
-+	DLT_LAPD                       = 0xcb
-+	DLT_LIN                        = 0xd4
-+	DLT_LINUX_EVDEV                = 0xd8
-+	DLT_LINUX_IRDA                 = 0x90
-+	DLT_LINUX_LAPD                 = 0xb1
-+	DLT_LINUX_PPP_WITHDIRECTION    = 0xa6
-+	DLT_LINUX_SLL                  = 0x71
-+	DLT_LOOP                       = 0x6c
-+	DLT_LTALK                      = 0x72
-+	DLT_MATCHING_MAX               = 0x104
-+	DLT_MATCHING_MIN               = 0x68
-+	DLT_MFR                        = 0xb6
-+	DLT_MOST                       = 0xd3
-+	DLT_MPEG_2_TS                  = 0xf3
-+	DLT_MPLS                       = 0xdb
-+	DLT_MTP2                       = 0x8c
-+	DLT_MTP2_WITH_PHDR             = 0x8b
-+	DLT_MTP3                       = 0x8d
-+	DLT_MUX27010                   = 0xec
-+	DLT_NETANALYZER                = 0xf0
-+	DLT_NETANALYZER_TRANSPARENT    = 0xf1
-+	DLT_NETLINK                    = 0xfd
-+	DLT_NFC_LLCP                   = 0xf5
-+	DLT_NFLOG                      = 0xef
-+	DLT_NG40                       = 0xf4
-+	DLT_NULL                       = 0x0
-+	DLT_PCI_EXP                    = 0x7d
-+	DLT_PFLOG                      = 0x75
-+	DLT_PFSYNC                     = 0x79
-+	DLT_PKTAP                      = 0x102
-+	DLT_PPI                        = 0xc0
-+	DLT_PPP                        = 0x9
-+	DLT_PPP_BSDOS                  = 0x10
-+	DLT_PPP_ETHER                  = 0x33
-+	DLT_PPP_PPPD                   = 0xa6
-+	DLT_PPP_SERIAL                 = 0x32
-+	DLT_PPP_WITH_DIR               = 0xcc
-+	DLT_PPP_WITH_DIRECTION         = 0xa6
-+	DLT_PRISM_HEADER               = 0x77
-+	DLT_PROFIBUS_DL                = 0x101
-+	DLT_PRONET                     = 0x4
-+	DLT_RAIF1                      = 0xc6
-+	DLT_RAW                        = 0xc
-+	DLT_RIO                        = 0x7c
-+	DLT_RTAC_SERIAL                = 0xfa
-+	DLT_SCCP                       = 0x8e
-+	DLT_SCTP                       = 0xf8
-+	DLT_SITA                       = 0xc4
-+	DLT_SLIP                       = 0x8
-+	DLT_SLIP_BSDOS                 = 0xf
-+	DLT_STANAG_5066_D_PDU          = 0xed
-+	DLT_SUNATM                     = 0x7b
-+	DLT_SYMANTEC_FIREWALL          = 0x63
-+	DLT_TZSP                       = 0x80
-+	DLT_USB                        = 0xba
-+	DLT_USBPCAP                    = 0xf9
-+	DLT_USB_LINUX                  = 0xbd
-+	DLT_USB_LINUX_MMAPPED          = 0xdc
-+	DLT_USER0                      = 0x93
-+	DLT_USER1                      = 0x94
-+	DLT_USER10                     = 0x9d
-+	DLT_USER11                     = 0x9e
-+	DLT_USER12                     = 0x9f
-+	DLT_USER13                     = 0xa0
-+	DLT_USER14                     = 0xa1
-+	DLT_USER15                     = 0xa2
-+	DLT_USER2                      = 0x95
-+	DLT_USER3                      = 0x96
-+	DLT_USER4                      = 0x97
-+	DLT_USER5                      = 0x98
-+	DLT_USER6                      = 0x99
-+	DLT_USER7                      = 0x9a
-+	DLT_USER8                      = 0x9b
-+	DLT_USER9                      = 0x9c
-+	DLT_WIHART                     = 0xdf
-+	DLT_WIRESHARK_UPPER_PDU        = 0xfc
-+	DLT_X2E_SERIAL                 = 0xd5
-+	DLT_X2E_XORAYA                 = 0xd6
-+	DT_BLK                         = 0x6
-+	DT_CHR                         = 0x2
-+	DT_DIR                         = 0x4
-+	DT_FIFO                        = 0x1
-+	DT_LNK                         = 0xa
-+	DT_REG                         = 0x8
-+	DT_SOCK                        = 0xc
-+	DT_UNKNOWN                     = 0x0
-+	DT_WHT                         = 0xe
-+	ECHO                           = 0x8
-+	ECHOCTL                        = 0x40
-+	ECHOE                          = 0x2
-+	ECHOK                          = 0x4
-+	ECHOKE                         = 0x1
-+	ECHONL                         = 0x10
-+	ECHOPRT                        = 0x20
-+	EVFILT_AIO                     = -0x3
-+	EVFILT_FS                      = -0x9
-+	EVFILT_LIO                     = -0xa
-+	EVFILT_PROC                    = -0x5
-+	EVFILT_PROCDESC                = -0x8
-+	EVFILT_READ                    = -0x1
-+	EVFILT_SENDFILE                = -0xc
-+	EVFILT_SIGNAL                  = -0x6
-+	EVFILT_SYSCOUNT                = 0xc
-+	EVFILT_TIMER                   = -0x7
-+	EVFILT_USER                    = -0xb
-+	EVFILT_VNODE                   = -0x4
-+	EVFILT_WRITE                   = -0x2
-+	EV_ADD                         = 0x1
-+	EV_CLEAR                       = 0x20
-+	EV_DELETE                      = 0x2
-+	EV_DISABLE                     = 0x8
-+	EV_DISPATCH                    = 0x80
-+	EV_DROP                        = 0x1000
-+	EV_ENABLE                      = 0x4
-+	EV_EOF                         = 0x8000
-+	EV_ERROR                       = 0x4000
-+	EV_FLAG1                       = 0x2000
-+	EV_FLAG2                       = 0x4000
-+	EV_FORCEONESHOT                = 0x100
-+	EV_ONESHOT                     = 0x10
-+	EV_RECEIPT                     = 0x40
-+	EV_SYSFLAGS                    = 0xf000
-+	EXTA                           = 0x4b00
-+	EXTATTR_NAMESPACE_EMPTY        = 0x0
-+	EXTATTR_NAMESPACE_SYSTEM       = 0x2
-+	EXTATTR_NAMESPACE_USER         = 0x1
-+	EXTB                           = 0x9600
-+	EXTPROC                        = 0x800
-+	FD_CLOEXEC                     = 0x1
-+	FD_SETSIZE                     = 0x400
-+	FLUSHO                         = 0x800000
-+	F_CANCEL                       = 0x5
-+	F_DUP2FD                       = 0xa
-+	F_DUP2FD_CLOEXEC               = 0x12
-+	F_DUPFD                        = 0x0
-+	F_DUPFD_CLOEXEC                = 0x11
-+	F_GETFD                        = 0x1
-+	F_GETFL                        = 0x3
-+	F_GETLK                        = 0xb
-+	F_GETOWN                       = 0x5
-+	F_OGETLK                       = 0x7
-+	F_OK                           = 0x0
-+	F_OSETLK                       = 0x8
-+	F_OSETLKW                      = 0x9
-+	F_RDAHEAD                      = 0x10
-+	F_RDLCK                        = 0x1
-+	F_READAHEAD                    = 0xf
-+	F_SETFD                        = 0x2
-+	F_SETFL                        = 0x4
-+	F_SETLK                        = 0xc
-+	F_SETLKW                       = 0xd
-+	F_SETLK_REMOTE                 = 0xe
-+	F_SETOWN                       = 0x6
-+	F_UNLCK                        = 0x2
-+	F_UNLCKSYS                     = 0x4
-+	F_WRLCK                        = 0x3
-+	HUPCL                          = 0x4000
-+	HW_MACHINE                     = 0x1
-+	ICANON                         = 0x100
-+	ICMP6_FILTER                   = 0x12
-+	ICRNL                          = 0x100
-+	IEXTEN                         = 0x400
-+	IFAN_ARRIVAL                   = 0x0
-+	IFAN_DEPARTURE                 = 0x1
-+	IFF_ALLMULTI                   = 0x200
-+	IFF_ALTPHYS                    = 0x4000
-+	IFF_BROADCAST                  = 0x2
-+	IFF_CANTCHANGE                 = 0x218f52
-+	IFF_CANTCONFIG                 = 0x10000
-+	IFF_DEBUG                      = 0x4
-+	IFF_DRV_OACTIVE                = 0x400
-+	IFF_DRV_RUNNING                = 0x40
-+	IFF_DYING                      = 0x200000
-+	IFF_LINK0                      = 0x1000
-+	IFF_LINK1                      = 0x2000
-+	IFF_LINK2                      = 0x4000
-+	IFF_LOOPBACK                   = 0x8
-+	IFF_MONITOR                    = 0x40000
-+	IFF_MULTICAST                  = 0x8000
-+	IFF_NOARP                      = 0x80
-+	IFF_OACTIVE                    = 0x400
-+	IFF_POINTOPOINT                = 0x10
-+	IFF_PPROMISC                   = 0x20000
-+	IFF_PROMISC                    = 0x100
-+	IFF_RENAMING                   = 0x400000
-+	IFF_RUNNING                    = 0x40
-+	IFF_SIMPLEX                    = 0x800
-+	IFF_STATICARP                  = 0x80000
-+	IFF_UP                         = 0x1
-+	IFNAMSIZ                       = 0x10
-+	IFT_BRIDGE                     = 0xd1
-+	IFT_CARP                       = 0xf8
-+	IFT_IEEE1394                   = 0x90
-+	IFT_INFINIBAND                 = 0xc7
-+	IFT_L2VLAN                     = 0x87
-+	IFT_L3IPVLAN                   = 0x88
-+	IFT_PPP                        = 0x17
-+	IFT_PROPVIRTUAL                = 0x35
-+	IGNBRK                         = 0x1
-+	IGNCR                          = 0x80
-+	IGNPAR                         = 0x4
-+	IMAXBEL                        = 0x2000
-+	INLCR                          = 0x40
-+	INPCK                          = 0x10
-+	IN_CLASSA_HOST                 = 0xffffff
-+	IN_CLASSA_MAX                  = 0x80
-+	IN_CLASSA_NET                  = 0xff000000
-+	IN_CLASSA_NSHIFT               = 0x18
-+	IN_CLASSB_HOST                 = 0xffff
-+	IN_CLASSB_MAX                  = 0x10000
-+	IN_CLASSB_NET                  = 0xffff0000
-+	IN_CLASSB_NSHIFT               = 0x10
-+	IN_CLASSC_HOST                 = 0xff
-+	IN_CLASSC_NET                  = 0xffffff00
-+	IN_CLASSC_NSHIFT               = 0x8
-+	IN_CLASSD_HOST                 = 0xfffffff
-+	IN_CLASSD_NET                  = 0xf0000000
-+	IN_CLASSD_NSHIFT               = 0x1c
-+	IN_LOOPBACKNET                 = 0x7f
-+	IN_RFC3021_MASK                = 0xfffffffe
-+	IPPROTO_3PC                    = 0x22
-+	IPPROTO_ADFS                   = 0x44
-+	IPPROTO_AH                     = 0x33
-+	IPPROTO_AHIP                   = 0x3d
-+	IPPROTO_APES                   = 0x63
-+	IPPROTO_ARGUS                  = 0xd
-+	IPPROTO_AX25                   = 0x5d
-+	IPPROTO_BHA                    = 0x31
-+	IPPROTO_BLT                    = 0x1e
-+	IPPROTO_BRSATMON               = 0x4c
-+	IPPROTO_CARP                   = 0x70
-+	IPPROTO_CFTP                   = 0x3e
-+	IPPROTO_CHAOS                  = 0x10
-+	IPPROTO_CMTP                   = 0x26
-+	IPPROTO_CPHB                   = 0x49
-+	IPPROTO_CPNX                   = 0x48
-+	IPPROTO_DDP                    = 0x25
-+	IPPROTO_DGP                    = 0x56
-+	IPPROTO_DIVERT                 = 0x102
-+	IPPROTO_DONE                   = 0x101
-+	IPPROTO_DSTOPTS                = 0x3c
-+	IPPROTO_EGP                    = 0x8
-+	IPPROTO_EMCON                  = 0xe
-+	IPPROTO_ENCAP                  = 0x62
-+	IPPROTO_EON                    = 0x50
-+	IPPROTO_ESP                    = 0x32
-+	IPPROTO_ETHERIP                = 0x61
-+	IPPROTO_FRAGMENT               = 0x2c
-+	IPPROTO_GGP                    = 0x3
-+	IPPROTO_GMTP                   = 0x64
-+	IPPROTO_GRE                    = 0x2f
-+	IPPROTO_HELLO                  = 0x3f
-+	IPPROTO_HIP                    = 0x8b
-+	IPPROTO_HMP                    = 0x14
-+	IPPROTO_HOPOPTS                = 0x0
-+	IPPROTO_ICMP                   = 0x1
-+	IPPROTO_ICMPV6                 = 0x3a
-+	IPPROTO_IDP                    = 0x16
-+	IPPROTO_IDPR                   = 0x23
-+	IPPROTO_IDRP                   = 0x2d
-+	IPPROTO_IGMP                   = 0x2
-+	IPPROTO_IGP                    = 0x55
-+	IPPROTO_IGRP                   = 0x58
-+	IPPROTO_IL                     = 0x28
-+	IPPROTO_INLSP                  = 0x34
-+	IPPROTO_INP                    = 0x20
-+	IPPROTO_IP                     = 0x0
-+	IPPROTO_IPCOMP                 = 0x6c
-+	IPPROTO_IPCV                   = 0x47
-+	IPPROTO_IPEIP                  = 0x5e
-+	IPPROTO_IPIP                   = 0x4
-+	IPPROTO_IPPC                   = 0x43
-+	IPPROTO_IPV4                   = 0x4
-+	IPPROTO_IPV6                   = 0x29
-+	IPPROTO_IRTP                   = 0x1c
-+	IPPROTO_KRYPTOLAN              = 0x41
-+	IPPROTO_LARP                   = 0x5b
-+	IPPROTO_LEAF1                  = 0x19
-+	IPPROTO_LEAF2                  = 0x1a
-+	IPPROTO_MAX                    = 0x100
-+	IPPROTO_MEAS                   = 0x13
-+	IPPROTO_MH                     = 0x87
-+	IPPROTO_MHRP                   = 0x30
-+	IPPROTO_MICP                   = 0x5f
-+	IPPROTO_MOBILE                 = 0x37
-+	IPPROTO_MPLS                   = 0x89
-+	IPPROTO_MTP                    = 0x5c
-+	IPPROTO_MUX                    = 0x12
-+	IPPROTO_ND                     = 0x4d
-+	IPPROTO_NHRP                   = 0x36
-+	IPPROTO_NONE                   = 0x3b
-+	IPPROTO_NSP                    = 0x1f
-+	IPPROTO_NVPII                  = 0xb
-+	IPPROTO_OLD_DIVERT             = 0xfe
-+	IPPROTO_OSPFIGP                = 0x59
-+	IPPROTO_PFSYNC                 = 0xf0
-+	IPPROTO_PGM                    = 0x71
-+	IPPROTO_PIGP                   = 0x9
-+	IPPROTO_PIM                    = 0x67
-+	IPPROTO_PRM                    = 0x15
-+	IPPROTO_PUP                    = 0xc
-+	IPPROTO_PVP                    = 0x4b
-+	IPPROTO_RAW                    = 0xff
-+	IPPROTO_RCCMON                 = 0xa
-+	IPPROTO_RDP                    = 0x1b
-+	IPPROTO_RESERVED_253           = 0xfd
-+	IPPROTO_RESERVED_254           = 0xfe
-+	IPPROTO_ROUTING                = 0x2b
-+	IPPROTO_RSVP                   = 0x2e
-+	IPPROTO_RVD                    = 0x42
-+	IPPROTO_SATEXPAK               = 0x40
-+	IPPROTO_SATMON                 = 0x45
-+	IPPROTO_SCCSP                  = 0x60
-+	IPPROTO_SCTP                   = 0x84
-+	IPPROTO_SDRP                   = 0x2a
-+	IPPROTO_SEND                   = 0x103
-+	IPPROTO_SEP                    = 0x21
-+	IPPROTO_SHIM6                  = 0x8c
-+	IPPROTO_SKIP                   = 0x39
-+	IPPROTO_SPACER                 = 0x7fff
-+	IPPROTO_SRPC                   = 0x5a
-+	IPPROTO_ST                     = 0x7
-+	IPPROTO_SVMTP                  = 0x52
-+	IPPROTO_SWIPE                  = 0x35
-+	IPPROTO_TCF                    = 0x57
-+	IPPROTO_TCP                    = 0x6
-+	IPPROTO_TLSP                   = 0x38
-+	IPPROTO_TP                     = 0x1d
-+	IPPROTO_TPXX                   = 0x27
-+	IPPROTO_TRUNK1                 = 0x17
-+	IPPROTO_TRUNK2                 = 0x18
-+	IPPROTO_TTP                    = 0x54
-+	IPPROTO_UDP                    = 0x11
-+	IPPROTO_UDPLITE                = 0x88
-+	IPPROTO_VINES                  = 0x53
-+	IPPROTO_VISA                   = 0x46
-+	IPPROTO_VMTP                   = 0x51
-+	IPPROTO_WBEXPAK                = 0x4f
-+	IPPROTO_WBMON                  = 0x4e
-+	IPPROTO_WSN                    = 0x4a
-+	IPPROTO_XNET                   = 0xf
-+	IPPROTO_XTP                    = 0x24
-+	IPV6_AUTOFLOWLABEL             = 0x3b
-+	IPV6_BINDANY                   = 0x40
-+	IPV6_BINDMULTI                 = 0x41
-+	IPV6_BINDV6ONLY                = 0x1b
-+	IPV6_CHECKSUM                  = 0x1a
-+	IPV6_DEFAULT_MULTICAST_HOPS    = 0x1
-+	IPV6_DEFAULT_MULTICAST_LOOP    = 0x1
-+	IPV6_DEFHLIM                   = 0x40
-+	IPV6_DONTFRAG                  = 0x3e
-+	IPV6_DSTOPTS                   = 0x32
-+	IPV6_FLOWID                    = 0x43
-+	IPV6_FLOWINFO_MASK             = 0xffffff0f
-+	IPV6_FLOWLABEL_MASK            = 0xffff0f00
-+	IPV6_FLOWTYPE                  = 0x44
-+	IPV6_FRAGTTL                   = 0x78
-+	IPV6_FW_ADD                    = 0x1e
-+	IPV6_FW_DEL                    = 0x1f
-+	IPV6_FW_FLUSH                  = 0x20
-+	IPV6_FW_GET                    = 0x22
-+	IPV6_FW_ZERO                   = 0x21
-+	IPV6_HLIMDEC                   = 0x1
-+	IPV6_HOPLIMIT                  = 0x2f
-+	IPV6_HOPOPTS                   = 0x31
-+	IPV6_IPSEC_POLICY              = 0x1c
-+	IPV6_JOIN_GROUP                = 0xc
-+	IPV6_LEAVE_GROUP               = 0xd
-+	IPV6_MAXHLIM                   = 0xff
-+	IPV6_MAXOPTHDR                 = 0x800
-+	IPV6_MAXPACKET                 = 0xffff
-+	IPV6_MAX_GROUP_SRC_FILTER      = 0x200
-+	IPV6_MAX_MEMBERSHIPS           = 0xfff
-+	IPV6_MAX_SOCK_SRC_FILTER       = 0x80
-+	IPV6_MIN_MEMBERSHIPS           = 0x1f
-+	IPV6_MMTU                      = 0x500
-+	IPV6_MSFILTER                  = 0x4a
-+	IPV6_MULTICAST_HOPS            = 0xa
-+	IPV6_MULTICAST_IF              = 0x9
-+	IPV6_MULTICAST_LOOP            = 0xb
-+	IPV6_NEXTHOP                   = 0x30
-+	IPV6_PATHMTU                   = 0x2c
-+	IPV6_PKTINFO                   = 0x2e
-+	IPV6_PORTRANGE                 = 0xe
-+	IPV6_PORTRANGE_DEFAULT         = 0x0
-+	IPV6_PORTRANGE_HIGH            = 0x1
-+	IPV6_PORTRANGE_LOW             = 0x2
-+	IPV6_PREFER_TEMPADDR           = 0x3f
-+	IPV6_RECVDSTOPTS               = 0x28
-+	IPV6_RECVFLOWID                = 0x46
-+	IPV6_RECVHOPLIMIT              = 0x25
-+	IPV6_RECVHOPOPTS               = 0x27
-+	IPV6_RECVPATHMTU               = 0x2b
-+	IPV6_RECVPKTINFO               = 0x24
-+	IPV6_RECVRSSBUCKETID           = 0x47
-+	IPV6_RECVRTHDR                 = 0x26
-+	IPV6_RECVTCLASS                = 0x39
-+	IPV6_RSSBUCKETID               = 0x45
-+	IPV6_RSS_LISTEN_BUCKET         = 0x42
-+	IPV6_RTHDR                     = 0x33
*** 3783 LINES SKIPPED ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109091352.189Dqgme090174>