mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Merged line-split from i2k. Several other cleanups.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@156 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
cc01075295
commit
6b96becc79
@ -173,13 +173,13 @@ command_bind(cmd, category, func)
|
||||
command_unbind(cmd, func)
|
||||
Unbind command `cmd' from function 'func.
|
||||
|
||||
Server::command_split(cmd, arg, max_nicks)
|
||||
Server::irc_send_cmd_split(cmd, arg, max_nicks)
|
||||
Split the `cmd' into several commands so `arg' argument has only
|
||||
`max_nicks' number of nicks.
|
||||
|
||||
Example: $server->command_split("KICK nick1,nick2,nick3 :byebye", 1, 2);
|
||||
Irssi will send commands "KICK nick1,nick2 :byebye" and
|
||||
"KICK nick3 :byebye" to server.
|
||||
Example: $server->irc_send_cmd_split("KICK #channel nick1,nick2,nick3 :byebye", 2, 2);
|
||||
Irssi will send commands "KICK #channel nick1,nick2 :byebye" and
|
||||
"KICK #channel nick3 :byebye" to server.
|
||||
|
||||
|
||||
*** Server functions
|
||||
|
@ -1,6 +1,7 @@
|
||||
#ifndef __COMMON_SETUP_H
|
||||
#define __COMMON_SETUP_H
|
||||
|
||||
#include "irc-base/network.h"
|
||||
#include "settings/settings-public.h"
|
||||
|
||||
#define LOG_FILE_CREATE_MODE 0644
|
||||
@ -69,5 +70,7 @@ SETUP_CHANNEL_REC;
|
||||
extern GList *setupchannels;
|
||||
|
||||
extern gboolean readonly;
|
||||
extern IPADDR source_host_ip; /* Resolved address */
|
||||
extern gboolean source_host_ok; /* Use source_host_ip .. */
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user