From 0ff5bafa32e76a447f4a1315177de0ee12111d4e Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 17 May 2005 16:30:55 +0000 Subject: Shrunk some datatypes git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1418 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/connection.h | 8 ++++---- 1 file 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 */ -- cgit v1.2.3