| 177 | } |
| 178 | |
| 179 | struct RangeRequest { |
| 180 | start: u64, |
| 181 | end: u64, |
| 182 | total_size: u64, |
| 183 | } |
| 184 | |
| 185 | fn parse_range(range_str: &str, total_size: u64) -> Option<RangeRequest> { |
| 186 | let range_parts: Vec<&str> = range_str.split('-').collect(); |
nothing calls this directly
no outgoing calls
no test coverage detected