| 611 | } |
| 612 | |
| 613 | Status ValidateFilePath(const S3Path& path) { |
| 614 | if (path.bucket.empty() || path.key.empty()) { |
| 615 | return NotAFile(path); |
| 616 | } |
| 617 | return Status::OK(); |
| 618 | } |
| 619 | |
| 620 | std::string FormatRange(int64_t start, int64_t length) { |
| 621 | // Format a HTTP range header value |
no test coverage detected