]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cidr.cpp
Relax fd bounds checking
[user/henk/code/inspircd.git] / src / cidr.cpp
index 3338756655b6e8e5f2e42abe0c1545e90969ce00..875b953044498ece026e15423b4c102cbd813c60 100644 (file)
@@ -19,8 +19,6 @@
  */
 
 
-/* $Core */
-
 #include "inspircd.h"
 
 /* Match CIDR strings, e.g. 127.0.0.1 to 127.0.0.0/8 or 3ffe:1:5:6::8 to 3ffe:1::0/32
@@ -82,5 +80,3 @@ bool irc::sockets::MatchCIDR(const std::string &address, const std::string &cidr
 
        return mask == mask2;
 }
-
-