aboutsummaryrefslogtreecommitdiff
path: root/src/unittest/test_noise.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittest/test_noise.cpp')
0 files changed, 0 insertions, 0 deletions
pan> (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef BAN_HEADER #define BAN_HEADER #include "util/string.h" #include "threading/thread.h" #include "threading/mutex.h" #include "exceptions.h" #include <map> #include <string> class BanManager { public: BanManager(const std::string &bannfilepath); ~BanManager(); void load(); void save(); bool isIpBanned(const std::string &ip); // Supplying ip_or_name = "" lists all bans. std::string getBanDescription(const std::string &ip_or_name); std::string getBanName(const std::string &ip); void add(const std::string &ip, const std::string &name);