diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2011-11-18 13:45:09 +0100 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-11-21 22:18:03 +0100 |
commit | fc734e8d9f9280f0416f6677befd6b7289e21586 (patch) | |
tree | 1d6ce5f5693ecc8974547eab52df755d16e7dca4 | |
parent | 451c1e088c22a4c16dab346b126d2cf69aa7b38f (diff) | |
download | miniircd-fc734e8d9f9280f0416f6677befd6b7289e21586.tar.gz miniircd-fc734e8d9f9280f0416f6677befd6b7289e21586.zip |
Add support for WALLOPS
-rw-r--r-- | CHANGES | 1 | ||||
-rwxr-xr-x | miniircd | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -2,6 +2,7 @@ UNRELEASED * Added support for channel keys. * 422 message is now sent after registration when no MOTD is available. + * Added support for WALLOPS command. 0.3 2011-08-25 @@ -405,6 +405,14 @@ class Client(object): else: self.reply("442 %s :You're not on that channel" % channelname) + def wallops_handler(): + if len(arguments) < 1: + self.reply_461(command) + message = arguments[0] + for client in server.clients.values(): + client.message(":%s NOTICE %s :Global notice: %s" + % (self.prefix, client.nickname, message)) + def who_handler(): if len(arguments) < 1: return @@ -454,6 +462,7 @@ class Client(object): "PRIVMSG": notice_and_privmsg_handler, "QUIT": quit_handler, "TOPIC": topic_handler, + "WALLOPS": wallops_handler, "WHO": who_handler, "WHOIS": whois_handler, } |