| 364 | |
| 365 | |
| 366 | uint64 CEMSocket::GetSentBytesCompleteFileSinceLastCallAndReset() |
| 367 | { |
| 368 | std::lock_guard<std::mutex> lock( m_sendLocker ); |
| 369 | |
| 370 | uint64 sentBytes = m_numberOfSentBytesCompleteFile; |
| 371 | m_numberOfSentBytesCompleteFile = 0; |
| 372 | |
| 373 | return sentBytes; |
| 374 | } |
| 375 | |
| 376 | |
| 377 | uint64 CEMSocket::GetSentBytesPartFileSinceLastCallAndReset() |