| 1318 | } |
| 1319 | |
| 1320 | bool IGFD::FilterInfos::regexExist(const std::string& vFilter) const { |
| 1321 | for (const auto& regex : filters_regex) { |
| 1322 | if (std::regex_search(vFilter, regex)) { |
| 1323 | return true; |
| 1324 | } |
| 1325 | } |
| 1326 | return false; |
| 1327 | } |
| 1328 | |
| 1329 | std::string IGFD::FilterInfos::transformAsteriskBasedFilterToRegex(const std::string& vFilter) { |
| 1330 | std::string res; |