1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2008 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
18 #include "inspstring.h"
20 static bool match_internal(const unsigned char *str, const unsigned char *mask, unsigned const char *map)
22 unsigned char *cp = NULL, *mp = NULL;
23 unsigned char* string = (unsigned char*)str;
24 unsigned char* wild = (unsigned char*)mask;
27 map = rfc_case_insensitive_map;
29 while ((*string) && (*wild != '*'))
31 if ((map[*wild] != map[*string]) && (*wild != '?'))
51 if ((map[*wild] == map[*string]) || (*wild == '?'))
72 /********************************************************************
73 * Below here is all wrappers around match_internal
74 ********************************************************************/
76 CoreExport bool InspIRCd::Match(const std::string &str, const std::string &mask, unsigned const char *map)
78 return match_internal((const unsigned char *)str.c_str(), (const unsigned char *)mask.c_str(), map);
81 CoreExport bool InspIRCd::Match(const char *str, const char *mask, unsigned const char *map)
83 return match_internal((const unsigned char *)str, (const unsigned char *)mask, map);
86 CoreExport bool InspIRCd::MatchCIDR(const std::string &str, const std::string &mask, unsigned const char *map)
88 if (irc::sockets::MatchCIDR(str, mask, true))
91 // Fall back to regular match
92 return InspIRCd::Match(str, mask, NULL);
95 CoreExport bool InspIRCd::MatchCIDR(const char *str, const char *mask, unsigned const char *map)
97 if (irc::sockets::MatchCIDR(str, mask, true))
100 // Fall back to regular match
101 return InspIRCd::Match(str, mask, NULL);