aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar brain2005-05-17 16:30:55 +0000
committerGravatar brain2005-05-17 16:30:55 +0000
commit0ff5bafa32e76a447f4a1315177de0ee12111d4e (patch)
treebbefffb2b610a5b9c17fdb96270a3441bf75d455 /include
parentMoved a load of servers-only stuff into serverrec out of the way of userrec (diff)
downloadinspircd++-0ff5bafa32e76a447f4a1315177de0ee12111d4e.tar.gz
inspircd++-0ff5bafa32e76a447f4a1315177de0ee12111d4e.tar.bz2
inspircd++-0ff5bafa32e76a447f4a1315177de0ee12111d4e.zip
Shrunk some datatypes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1418 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-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
*/