Socket internal data counters now 64 bits unsigned integers
This commit is contained in:
parent
8edc642884
commit
cc93a8fa4e
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue