Merge branch 'feature/android_qt6_moving' into feature/android_bandwidth_counter
# Conflicts: # client/platforms/android/android_controller.cpp # client/platforms/android/android_controller.h
This commit is contained in:
commit
39736e865e
255 changed files with 4322 additions and 7218 deletions
|
|
@ -67,7 +67,10 @@ VpnProtocol::VpnConnectionState VpnProtocol::connectionState() const
|
|||
|
||||
void VpnProtocol::setBytesChanged(quint64 receivedBytes, quint64 sentBytes)
|
||||
{
|
||||
emit bytesChanged(receivedBytes - m_receivedBytes, sentBytes - m_sentBytes);
|
||||
quint64 rxDiff = receivedBytes - m_receivedBytes;
|
||||
quint64 txDiff = sentBytes - m_sentBytes;
|
||||
|
||||
emit bytesChanged(rxDiff, txDiff);
|
||||
|
||||
m_receivedBytes = receivedBytes;
|
||||
m_sentBytes = sentBytes;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue