| 379 | } |
| 380 | |
| 381 | void decodeStorageCacheValue(const ValueRef& value, std::vector<uint16_t>& serverIndices) { |
| 382 | serverIndices.clear(); |
| 383 | if (value.size()) { |
| 384 | BinaryReader rd(value, IncludeVersion()); |
| 385 | rd >> serverIndices; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | const Value logsValue(const std::vector<std::pair<UID, NetworkAddress>>& logs, |
| 390 | const std::vector<std::pair<UID, NetworkAddress>>& oldLogs) { |
no test coverage detected