diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-11-17 18:38:10 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-11-17 18:38:10 +0100 |
| commit | cd74cc9cf40795144dfbd7e933dcd10d220916f6 (patch) | |
| tree | 6c1e55891acf53909da12aad34c86409be8c20a6 /config | |
| parent | 3ad1f7a214ba9f22499ae6b2b8cc1f0b824073eb (diff) | |
syz-hub: add program
syz-hub is used to exchange programs between syz-managers.
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
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", |
