diff options
author | Wouter Coekaerts <coekie@irssi.org> | 2006-05-04 10:07:23 +0000 |
---|---|---|
committer | coekie <coekie@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2006-05-04 10:07:23 +0000 |
commit | 740987a39b75ab0d6ef361e41bc2f4c68ae58b86 (patch) | |
tree | 6a456d89e32ff19c144e8b96efffd1aae33478d2 /src/irc/core/irc.h | |
parent | 4de9baf8f1a4135128f3d40af7201e974107ac2f (diff) | |
download | irssi-740987a39b75ab0d6ef361e41bc2f4c68ae58b86.zip |
New perl command send_raw_first, patch by ComradeP (Bug 413)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4265 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core/irc.h')
-rw-r--r-- | src/irc/core/irc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/irc/core/irc.h b/src/irc/core/irc.h index 5197f42d..de19e084 100644 --- a/src/irc/core/irc.h +++ b/src/irc/core/irc.h @@ -44,6 +44,10 @@ void irc_send_cmd_split(IRC_SERVER_REC *server, const char *cmd, /* Send command to server immediately bypassing all flood protections and queues. */ void irc_send_cmd_now(IRC_SERVER_REC *server, const char *cmd); +/* Send command to server putting it at the beginning of the queue of + commands to send -- it will go out as soon as possible in accordance + to the flood protection settings. */ +void irc_send_cmd_first(IRC_SERVER_REC *server, const char *cmd); /* The core of the irc_send_cmd* functions. If `raw' is TRUE, the `cmd' won't be checked at all if it's 512 bytes or not, or if it contains line feeds or not. Use with extreme caution! */ |