Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-05-30 19:56:10 +0000
committerStijn Buys <ingar@osirion.org>2008-05-30 19:56:10 +0000
commit8933b795003f8ad202fce6e553191be8932a37b6 (patch)
treebfb460cbf9261b44deabfd469046a14a95c8d16c /src/core/stats.cc
parentf71901eeab126bb4b7e2552dd2edf0b34632c683 (diff)
zlib support
Diffstat (limited to 'src/core/stats.cc')
-rw-r--r--src/core/stats.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/stats.cc b/src/core/stats.cc
index 0e6a15b..36e942f 100644
--- a/src/core/stats.cc
+++ b/src/core/stats.cc
@@ -8,13 +8,14 @@
namespace core {
-unsigned int Stats::network_bytes_sent = 0;
-unsigned int Stats::network_bytes_received = 0;
-
+unsigned long Stats::network_bytes_sent = 0;
+unsigned long Stats::network_bytes_received = 0;
+unsigned long Stats::network_uncompressed_bytes_sent = 0;
void Stats::clear()
{
network_bytes_sent = 0;
network_bytes_received = 0;
+ network_uncompressed_bytes_sent = 0;
};
}