We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
connman
1 parent 063a8b8 commit e84dc36Copy full SHA for e84dc36
src/test/fuzz/connman.cpp
@@ -40,7 +40,9 @@ FUZZ_TARGET(connman, .init = initialize_connman)
40
fuzzed_data_provider.ConsumeBool()};
41
42
const uint64_t max_outbound_limit{fuzzed_data_provider.ConsumeIntegral<uint64_t>()};
43
- connman.Init({ .nMaxOutboundLimit = max_outbound_limit });
+ CConnman::Options options;
44
+ options.nMaxOutboundLimit = max_outbound_limit;
45
+ connman.Init(options);
46
47
CNetAddr random_netaddr;
48
CNode random_node = ConsumeNode(fuzzed_data_provider);
0 commit comments