mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
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
This commit is contained in:
parent
4de9baf8f1
commit
740987a39b
3 changed files with 21 additions and 0 deletions
|
|
@ -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! */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue