diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-17 16:30:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-17 16:30:55 +0000 |
commit | 0ff5bafa32e76a447f4a1315177de0ee12111d4e (patch) | |
tree | bbefffb2b610a5b9c17fdb96270a3441bf75d455 | |
parent | fcf2bac28ad748045bd3bc2bea99e77d1b57f693 (diff) |
Shrunk some datatypes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1418 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/connection.h | 8 |
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 */ |