summaryrefslogtreecommitdiff
path: root/include/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/connection.h')
-rw-r--r--include/connection.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connection.h b/include/connection.h
index 6f33663af..ef18ec7c0 100644
--- a/include/connection.h
+++ b/include/connection.h
@@ -226,19 +226,19 @@ class connection : public Extensible
/** Stats counter for bytes inbound
*/
- long bytes_in;
+ int bytes_in;
/** Stats counter for bytes outbound
*/
- long bytes_out;
+ int bytes_out;
/** Stats counter for commands inbound
*/
- long cmds_in;
+ int cmds_in;
/** Stats counter for commands outbound
*/
- long cmds_out;
+ int cmds_out;
/** True if server/user has authenticated, false if otherwise
*/