]> git.stg.codes - stg.git/commitdiff
Some code reordering
authorMaxim Mamontov <faust.madf@gmail.com>
Sun, 13 Nov 2011 20:44:06 +0000 (22:44 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Sun, 13 Nov 2011 20:44:06 +0000 (22:44 +0200)
include/stg/user_ips.h

index 17bb59be1bc9f1e09cb7cf3727d2fec1db7eae76..8fada63b1bfa685a38d544fd9d6e844ad27b0b63 100644 (file)
@@ -134,6 +134,14 @@ return ips.size();
 }
 //-----------------------------------------------------------------------------
 inline
+uint32_t USER_IPS::CalcMask(unsigned int msk) const
+{
+if (msk > 32)
+    return 0;
+return htonl(0xFFffFFff << (32 - msk));
+}
+//-----------------------------------------------------------------------------
+inline
 bool USER_IPS::IsIPInIPS(uint32_t ip) const
 {
 if (ips.empty())
@@ -163,14 +171,6 @@ return false;
 }
 //-----------------------------------------------------------------------------
 inline
-uint32_t USER_IPS::CalcMask(unsigned int msk) const
-{
-if (msk > 32)
-    return 0;
-return htonl(0xFFffFFff << (32 - msk));
-}
-//-----------------------------------------------------------------------------
-inline
 void USER_IPS::Add(const IP_MASK &im)
 {
 ips.push_back(im);