diff options
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -11250,6 +11250,20 @@ handle_command_notice (struct handler_args *a) } static bool +handle_command_squery (struct handler_args *a) +{ + if (!*a->arguments) + return false; + + char *target = cut_word (&a->arguments); + if (!*a->arguments) + log_server_error (a->s, a->s->buffer, "No text to send"); + else + irc_send (a->s, "SQUERY %s :%s", target, a->arguments); + return true; +} + +static bool handle_command_ctcp (struct handler_args *a) { if (!*a->arguments) @@ -11864,6 +11878,9 @@ g_command_handlers[] = { "notice", "Send notice to a nick or channel", "<target> <message>", handle_command_notice, HANDLER_SERVER | HANDLER_NEEDS_REG }, + { "squery", "Send a message to a service", + "<service> <message>", + handle_command_squery, HANDLER_SERVER | HANDLER_NEEDS_REG }, { "ctcp", "Send a CTCP query", "<target> <tag>", handle_command_ctcp, HANDLER_SERVER | HANDLER_NEEDS_REG }, |