From 69ae63ecd25c63b4f6d446fae28af9c8d1caac4d Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 19 Jul 2006 15:03:26 +0000 Subject: Change stats recv/send to double, so they can hold truly massive numbers of transferred bytes (they would overflow after about 6 weeks on a busy net otherwise) Fix some warnings git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4450 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/inspircd.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/inspircd.h b/include/inspircd.h index 4d7205b5a..8e75c256c 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -63,15 +63,16 @@ class serverstats : public classbase unsigned long statsDnsGood; unsigned long statsDnsBad; unsigned long statsConnects; - unsigned long statsSent; - unsigned long statsRecv; + double statsSent; + double statsRecv; unsigned long BoundPortCount; serverstats() { statsAccept = statsRefused = statsUnknown = 0; statsCollisions = statsDns = statsDnsGood = 0; - statsDnsBad = statsConnects = statsSent = statsRecv = 0; + statsDnsBad = statsConnects = 0; + statsSent = statsRecv = 0.0; BoundPortCount = 0; } }; -- cgit v1.2.3