aboutsummaryrefslogtreecommitdiff
path: root/src/utils/irc/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/irc/__init__.py')
-rw-r--r--src/utils/irc/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils/irc/__init__.py b/src/utils/irc/__init__.py
index 39ee0058..b9ebdf58 100644
--- a/src/utils/irc/__init__.py
+++ b/src/utils/irc/__init__.py
@@ -1,4 +1,4 @@
-import json, string, re, typing
+import fnmatch, json, string, re, typing
from src import IRCLine, utils
from . import protocol
@@ -303,3 +303,6 @@ class MessageTag(object):
def get_value(self, tags: typing.Dict[str, str]) -> typing.Optional[str]:
key = list(set(tags.keys())&self._names)
return tags[key[0]] if key else None
+
+def hostmask_match(hostmask: str, pattern: str) -> bool:
+ return fnmatch.fnmatch(hostmask, pattern)