Socket internal data counters now 64 bits unsigned integers

This commit is contained in:
Thulinma 2016-06-06 12:18:48 +02:00
parent 8edc642884
commit cc93a8fa4e
2 changed files with 6 additions and 6 deletions

View file

@ -423,12 +423,12 @@ unsigned int Socket::Connection::connTime() {
}
/// Returns total amount of bytes sent.
unsigned int Socket::Connection::dataUp() {
uint64_t Socket::Connection::dataUp() {
return up;
}
/// Returns total amount of bytes received.
unsigned int Socket::Connection::dataDown() {
uint64_t Socket::Connection::dataDown() {
return down;
}