From cd74cc9cf40795144dfbd7e933dcd10d220916f6 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 17 Nov 2016 18:38:10 +0100 Subject: syz-hub: add program syz-hub is used to exchange programs between syz-managers. --- config/config.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config') diff --git a/config/config.go b/config/config.go index ac75221c7..bb8de5b95 100644 --- a/config/config.go +++ b/config/config.go @@ -35,6 +35,9 @@ type Config struct { Debug bool // dump all VM output to console Output string // one of stdout/dmesg/file (useful only for local VM) + Hub_Addr string + Hub_Key string + Syzkaller string // path to syzkaller checkout (syz-manager will look for binaries in bin subdir) Type string // VM type (qemu, kvm, local) Count int // number of VMs (don't secify for adb, instead specify devices) @@ -291,6 +294,8 @@ func checkUnknownFields(data []byte) (string, error) { "Bin", "Debug", "Output", + "Hub_Addr", + "Hub_Key", "Syzkaller", "Type", "Count", -- cgit mrf-deployment