mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
/RAWQUOTE: like /QUOTE, but don't add line feed after the command, and don't
truncate line to 512 bytes. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1410 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
4a967a5d5c
commit
93141c3a86
3 changed files with 38 additions and 16 deletions
|
|
@ -44,6 +44,11 @@ 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);
|
||||
/* 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! */
|
||||
void irc_send_cmd_full(IRC_SERVER_REC *server, const char *cmd,
|
||||
int send_now, int immediate, int raw);
|
||||
|
||||
#include "commands.h" /* contains the generic PARAM_FLAG_xxx defines */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue