| 222 | } |
| 223 | |
| 224 | StripeSM::StripeSM(Span *span, const Bytes &start, const CacheStoreBlocks &len) : _span(span), _start(start), _len(len) |
| 225 | { |
| 226 | swoc::bwprint(hashText, "{} {}:{}", span->_path.view(), _start.count(), _len.count()); |
| 227 | CryptoContext().hash_immediate(hash_id, hashText.data(), static_cast<int>(hashText.size())); |
| 228 | printf("hash id of stripe is hash of %.*s\n", static_cast<int>(hashText.size()), hashText.data()); |
| 229 | } |
| 230 | |
| 231 | bool |
| 232 | StripeSM::isFree() const |
nothing calls this directly
no test coverage detected