| 373 | } |
| 374 | |
| 375 | const Value storageCacheValue(const std::vector<uint16_t>& serverIndices) { |
| 376 | BinaryWriter wr((IncludeVersion(ProtocolVersion::withStorageCacheValue()))); |
| 377 | wr << serverIndices; |
| 378 | return wr.toValue(); |
| 379 | } |
| 380 | |
| 381 | void decodeStorageCacheValue(const ValueRef& value, std::vector<uint16_t>& serverIndices) { |
| 382 | serverIndices.clear(); |
no test coverage detected