minimal docker image aprox 3mb

This commit is contained in:
olebedev
2018-04-15 23:08:32 +05:00
parent 8bb8cf279b
commit 38c14c1d8e
653 changed files with 163739 additions and 167 deletions
+10
View File
@@ -0,0 +1,10 @@
// Copyright 2017 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
// A Setter is a type which can attach a compiled BPF filter to itself.
type Setter interface {
SetBPF(filter []RawInstruction) error
}