diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-04 12:55:39 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-05 09:08:39 +0000 |
| commit | e2dee74923d168c188f25fb11f1e254fdc759e93 (patch) | |
| tree | e58239b8e474ee161ddb6ac3c23c24cbfd8249e5 /pkg/flatrpc/flatrpc.fbs | |
| parent | 3623b56060a97ba5ae6e4ba25db127e58ad0e6be (diff) | |
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.
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
| -rw-r--r-- | pkg/flatrpc/flatrpc.fbs | 3 |
1 files changed, 3 insertions, 0 deletions
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. |
