(websocket) traffic tracker received bytes is message size while it should be wire size
This commit is contained in:
parent
140a21c8b3
commit
e15a2900e7
@ -1,6 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All changes to this project will be documented in this file.
|
All changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [8.1.7] - 2020-02-26
|
||||||
|
|
||||||
|
(websocket) traffic tracker received bytes is message size while it should be wire size
|
||||||
|
|
||||||
## [8.1.6] - 2020-02-26
|
## [8.1.6] - 2020-02-26
|
||||||
|
|
||||||
(ws_connect) display sent/received bytes statistics on exit
|
(ws_connect) display sent/received bytes statistics on exit
|
||||||
|
@ -412,7 +412,7 @@ namespace ix
|
|||||||
WebSocketCloseInfo(),
|
WebSocketCloseInfo(),
|
||||||
binary));
|
binary));
|
||||||
|
|
||||||
WebSocket::invokeTrafficTrackerCallback(msg.size(), true);
|
WebSocket::invokeTrafficTrackerCallback(wireSize, true);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,4 +6,4 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define IX_WEBSOCKET_VERSION "8.1.6"
|
#define IX_WEBSOCKET_VERSION "8.1.7"
|
||||||
|
Loading…
Reference in New Issue
Block a user