aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host
diff options
context:
space:
mode:
authorSiddharth M <siddharth.muralee@gmail.com>2019-07-14 20:29:29 +0530
committerDmitry Vyukov <dvyukov@google.com>2019-07-14 17:59:29 +0300
commit2bbe2f05585bb06f9c417ee8437a8077c97b0de2 (patch)
tree41b902498bad0bf6fbc479e877d4e59705f0682e /pkg/host
parente6fb0f1316017fe45a21e19fc2ef5aea5b27d734 (diff)
executor: add network packet injection for NetBSD
* Initial Commit * working build of network packet fuzzing * Add missed csource file * pkg/csource: fix build * executor/common_bsd.h: Add comment stating reason for ifconfig create
Diffstat (limited to 'pkg/host')
-rw-r--r--pkg/host/host_netbsd.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/host/host_netbsd.go b/pkg/host/host_netbsd.go
index 2ba822c36..609db091c 100644
--- a/pkg/host/host_netbsd.go
+++ b/pkg/host/host_netbsd.go
@@ -13,4 +13,5 @@ func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, st
func init() {
checkFeature[FeatureCoverage] = unconditionallyEnabled
+ checkFeature[FeatureNetworkInjection] = unconditionallyEnabled
}