X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fhashcomp.cpp;h=4ed98712a809e1d74e632e104ad35fef2996605f;hb=0a6b1e1a7de92e078a98f0b955d2624e5b85e4c1;hp=4fee9fd55d2925be015b014296ae8ddfafde6caa;hpb=2ee2e8b60d707d7a1bb644a16060654cb86c7b9f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 4fee9fd55..4ed98712a 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -1,10 +1,16 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2019 linuxdaemon + * Copyright (C) 2013, 2018-2019 Sadie Powell + * Copyright (C) 2013 Adam + * Copyright (C) 2012-2013, 2015-2016 Attila Molnar + * Copyright (C) 2012 Robby + * Copyright (C) 2009 Uli Schlachter * Copyright (C) 2009 Daniel De Graaf - * Copyright (C) 2005-2009 Craig Edwards - * Copyright (C) 2007-2008 Robin Burchell + * Copyright (C) 2008 Robin Burchell * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2006-2007, 2010 Craig Edwards * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -340,7 +346,7 @@ long irc::portparser::GetToken() if (x.empty()) return 0; - while (Overlaps(atoi(x.c_str()))) + while (Overlaps(ConvToNum(x))) { if (!sep.GetToken(x)) return 0; @@ -350,8 +356,8 @@ long irc::portparser::GetToken() if (dash != std::string::npos) { std::string sbegin(x, 0, dash); - range_begin = atoi(sbegin.c_str()); - range_end = atoi(x.c_str()+dash+1); + range_begin = ConvToNum(sbegin); + range_end = ConvToNum(x.c_str() + dash + 1); if ((range_begin > 0) && (range_end > 0) && (range_begin < 65536) && (range_end < 65536) && (range_begin < range_end)) { @@ -361,11 +367,11 @@ long irc::portparser::GetToken() else { /* Assume its just the one port */ - return atoi(sbegin.c_str()); + return ConvToNum(sbegin); } } else { - return atoi(x.c_str()); + return ConvToNum(x); } }