diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-28 21:31:33 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-01-02 15:06:36 +0100 |
commit | faaef9434c19e3643322ee442c240c166af5adbd (patch) | |
tree | 57b83f64d35d1c4258109cf901847385cfd463be /src/test/util | |
parent | fa42da2d5424c0aeccfae4b49fde2bea330b63dc (diff) |
fuzz: [refactor] Extract ALL_CONNECTION_TYPES constant
Diffstat (limited to 'src/test/util')
-rw-r--r-- | src/test/util/net.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/util/net.h b/src/test/util/net.h index 1208e92762..5fad570c29 100644 --- a/src/test/util/net.h +++ b/src/test/util/net.h @@ -30,4 +30,13 @@ struct ConnmanTestMsg : public CConnman { bool ReceiveMsgFrom(CNode& node, CSerializedNetMsg& ser_msg) const; }; +constexpr ConnectionType ALL_CONNECTION_TYPES[]{ + ConnectionType::INBOUND, + ConnectionType::OUTBOUND_FULL_RELAY, + ConnectionType::MANUAL, + ConnectionType::FEELER, + ConnectionType::BLOCK_RELAY, + ConnectionType::ADDR_FETCH, +}; + #endif // BITCOIN_TEST_UTIL_NET_H |