| 375 | |
| 376 | |
| 377 | uint64 CEMSocket::GetSentBytesPartFileSinceLastCallAndReset() |
| 378 | { |
| 379 | std::lock_guard<std::mutex> lock( m_sendLocker ); |
| 380 | |
| 381 | uint64 sentBytes = m_numberOfSentBytesPartFile; |
| 382 | m_numberOfSentBytesPartFile = 0; |
| 383 | |
| 384 | return sentBytes; |
| 385 | } |
| 386 | |
| 387 | uint64 CEMSocket::GetSentBytesControlPacketSinceLastCallAndReset() |
| 388 | { |