doc.go 477 B

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