// Copyright 2016 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. // Package bpf implements marshalling and unmarshalling of programs // for the Berkeley Packet Filter virtual machine. // // TODO: brief overview of the BPF virtual machine (registers, scratch, packet access, execution constraints) // // TODO: simple BPF program examples package bpf // import "golang.org/x/net/bpf"