| 217 | return (!strcmpi(_filename, with._filename) && _from == with._from && _to == with._to); |
| 218 | } |
| 219 | bool FileRequest::Contains(const FileRequest& with) const |
| 220 | { |
| 221 | return (!strcmpi(_filename, with._filename) && _from <= with._from && _to >= with._to); |
| 222 | } |
| 223 | |
| 224 | int FileServerST::RequestPresentAndDone(const FileRequest& req) const |
| 225 | { |
no test coverage detected