From e2dee74923d168c188f25fb11f1e254fdc759e93 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 4 Jun 2024 12:55:39 +0200 Subject: pkg/flatrpc: send parameters to the fuzzer in RPC When we rewrite syz-fuzzer in C++ flag parsing will be painful, so send as many parameters to syz-fuzzer in RPC rather than as flags. --- pkg/flatrpc/flatrpc.fbs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index ef2527422..7800d6779 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -34,6 +34,9 @@ table ConnectRequestRaw { } table ConnectReplyRaw { + debug :bool; + procs :int32; + slowdown :int32; leak_frames :[string]; race_frames :[string]; // Fuzzer sets up these features and returns results in InfoRequest.features. -- cgit mrf-deployment