| 981 | const V2MessageMap V2_MESSAGE_MAP; |
| 982 | |
| 983 | std::vector<uint8_t> GenerateRandomGarbage() noexcept |
| 984 | { |
| 985 | std::vector<uint8_t> ret; |
| 986 | FastRandomContext rng; |
| 987 | ret.resize(rng.randrange(V2Transport::MAX_GARBAGE_LEN + 1)); |
| 988 | rng.fillrand(MakeWritableByteSpan(ret)); |
| 989 | return ret; |
| 990 | } |
| 991 | |
| 992 | } // namespace |
| 993 |
no test coverage detected