diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-19 15:03:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-19 15:03:26 +0000 |
commit | 69ae63ecd25c63b4f6d446fae28af9c8d1caac4d (patch) | |
tree | 2d8b56938274a100844948f93abc9527cf2b899f /src/socket.cpp | |
parent | 250c92805cb8a25edd15f04fa673fbfa59c469fe (diff) |
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
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 793e930ff..b9d5fee5f 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -119,7 +119,7 @@ int OpenTCPSocket() bool HasPort(int port, char* addr) { - for (int count = 0; count < ServerInstance->stats->BoundPortCount; count++) + for (unsigned long count = 0; count < ServerInstance->stats->BoundPortCount; count++) { if ((port == Config->ports[count]) && (!strcasecmp(Config->addrs[count],addr))) { |