| 171 | } |
| 172 | |
| 173 | bool InboundTransfer::TransferStarted() const { |
| 174 | return cur_offset_ != 0; |
| 175 | } |
| 176 | |
| 177 | bool InboundTransfer::TransferFinished() const { |
| 178 | return total_length_ > 0 && cur_offset_ == total_length_; |
no outgoing calls
no test coverage detected